|
|
# queue_directory = /var/spool/postfix.alt | # queue_directory = /var/spool/postfix.alt |
# data_directory = /var/lib/postfix.alt | # data_directory = /var/lib/postfix.alt |
| |
CONF_DIR="/etc/postfix" | CONF_DIR="/etc/postfix" |
CONF_OPT="${SVCNAME##*.}" | CONF_OPT="${SVCNAME##*.}" |
if [[ -n ${CONF_OPT} && ${SVCNAME} != "postfix" ]]; then |
if [ -n "${CONF_OPT}" -a "${SVCNAME}" != "postfix" ]; then |
CONF_DIR="${CONF_DIR}.${CONF_OPT}" | CONF_DIR="${CONF_DIR}.${CONF_OPT}" |
fi | fi |
| |
opts="${opts} reload" | opts="${opts} reload" |
| |