mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 08:41:55 -06:00
15 lines
421 B
Bash
15 lines
421 B
Bash
|
#!/bin/bash -eu
|
||
|
|
||
|
HTTPD_SYSTEMD_NAME='httpd.service'
|
||
|
HTTPD_LOGDIR='/var/log/httpd'
|
||
|
HTTPD_ERRORLOG="${HTTPD_LOGDIR}/error_log"
|
||
|
HTTPD_BASEDIR='/etc/httpd'
|
||
|
HTTPD_ALIASDIR="${HTTPD_BASEDIR}/alias"
|
||
|
BIND_BASEDIR='/var/named'
|
||
|
BIND_DATADIR="${BIND_BASEDIR}/data"
|
||
|
|
||
|
function firewalld_cmd() { :; }
|
||
|
|
||
|
# this should be the last to override base variables with platform specific
|
||
|
source "$IPA_TESTS_SCRIPTS/variables-${IPA_PLATFORM}.sh"
|