Don't ask for mailcow hostname and time zone if already exported within the shell

master
Tudor Georgescu 2017-01-23 15:27:42 +00:00
parent 7959abfcdc
commit a62fdd4ee5
1 changed files with 7 additions and 2 deletions

View File

@ -12,8 +12,13 @@ if [[ -f mailcow.conf ]]; then
esac
fi
read -p "Hostname (FQDN): " -ei "mx.example.org" MAILCOW_HOSTNAME
read -p "Timezone: " -ei "Europe/Berlin" TZ
if [ -z "$MAILCOW_HOSTNAME" ]; then
read -p "Hostname (FQDN): " -ei "mx.example.org" MAILCOW_HOSTNAME
fi
if [ -z "$TZ" ]; then
read -p "Timezone: " -ei "Europe/Berlin" TZ
fi
cat << EOF > mailcow.conf
# ------------------------------