Merge pull request #25 from Klazomenai/master

Don't ask for mailcow hostname and time zone if already exported with…
master
André Peters 2017-01-23 23:22:15 +01:00 committed by GitHub
commit c9d44a6d98
1 changed files with 7 additions and 2 deletions

View File

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