mirror of https://github.com/zulip/zulip.git
installer: Prevent flags which conflict with `--no-overwrite-settings`.
Since `--postgres-missing-dictionaries` edits `/etc/zulip/zulip.conf`, it interferes with the intent of `--no-overwrite-settings`. Make the two settings conflict, to prevent this unclear state.
This commit is contained in:
parent
7f4a2527c0
commit
b165b4144d
|
@ -70,6 +70,14 @@ if [ -n "$SELF_SIGNED_CERT" ] && [ -n "$USE_CERTBOT" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ -n "$POSTGRES_MISSING_DICTIONARIES" ] && [ -n "$NO_OVERWRITE_SETTINGS" ]; then
|
||||
set +x
|
||||
echo "error: --postgres-missing-dictionaries and --no-overwrite-settings are incompatible" >&2
|
||||
echo >&2
|
||||
usage >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$EXTERNAL_HOST" ] || [ -z "$ZULIP_ADMINISTRATOR" ]; then
|
||||
if [ -n "$USE_CERTBOT" ] || [ -z "$NO_INIT_DB" ]; then
|
||||
usage >&2
|
||||
|
|
Loading…
Reference in New Issue