Fix missing quotes in env export (Closes: #1007, #1048)

This commit is contained in:
Birkenstab 2018-10-14 10:07:05 +02:00 committed by Johan Smits
parent 1353b16c2f
commit 92002041ba
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ function _setup_default_vars() {
DEFAULT_VARS["REPORT_SENDER"]="${REPORT_SENDER:=mailserver-report@${HOSTNAME}}"
for var in ${!DEFAULT_VARS[@]}; do
echo "export $var=${DEFAULT_VARS[$var]}" >> /root/.bashrc
echo "export $var=\"${DEFAULT_VARS[$var]}\"" >> /root/.bashrc
[ $? != 0 ] && notify 'err' "Unable to set $var=${DEFAULT_VARS[$var]}" && kill -15 `cat /var/run/supervisord.pid` && return 1
notify 'inf' "Set $var=${DEFAULT_VARS[$var]}"
done