mirror of https://github.com/zulip/zulip.git
install: Add --no-overwrite-settings option.
This commit needs more work to make this option reasonable.
This commit is contained in:
parent
2d1c2d4802
commit
8a53686f41
|
@ -31,6 +31,7 @@ while true; do
|
|||
--certbot) USE_CERTBOT=1; shift;;
|
||||
--hostname) EXTERNAL_HOST="$2"; shift; shift;;
|
||||
--email) ZULIP_ADMINISTRATOR="$2"; shift; shift;;
|
||||
--no-overwrite-settings) NO_OVERWRITE_SETTINGS=1; shift;;
|
||||
--no-init-db) NO_INIT_DB=1; shift;;
|
||||
--no-dist-upgrade) NO_DIST_UPGRADE=1; shift;;
|
||||
--) shift; break;;
|
||||
|
@ -298,6 +299,7 @@ fi
|
|||
|
||||
if [ "$has_appserver" = 0 ]; then
|
||||
"$ZULIP_PATH"/scripts/setup/generate_secrets.py --production
|
||||
if [ -z "$NO_OVERWRITE_SETTINGS" ] || ! [ -e "/etc/zulip/settings.py" ]; then
|
||||
cp -a "$ZULIP_PATH"/zproject/prod_settings_template.py /etc/zulip/settings.py
|
||||
if [ -n "$EXTERNAL_HOST" ]; then
|
||||
sed -i "s/^EXTERNAL_HOST =.*/EXTERNAL_HOST = '$EXTERNAL_HOST'/" /etc/zulip/settings.py
|
||||
|
@ -305,6 +307,7 @@ if [ "$has_appserver" = 0 ]; then
|
|||
if [ -n "$ZULIP_ADMINISTRATOR" ]; then
|
||||
sed -i "s/^ZULIP_ADMINISTRATOR =.*/ZULIP_ADMINISTRATOR = '$ZULIP_ADMINISTRATOR'/" /etc/zulip/settings.py
|
||||
fi
|
||||
fi
|
||||
ln -nsf /etc/zulip/settings.py "$ZULIP_PATH"/zproject/prod_settings.py
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue