diff --git a/scripts/lib/install b/scripts/lib/install index 5c852f7297..843e44afb7 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -499,29 +499,6 @@ EOF fi fi -if has_class "zulip::postgresql_common" && [ -z "$NO_INIT_DB" ]; then - "$ZULIP_PATH"/scripts/setup/create-database -fi - -if has_class "zulip::app_frontend_base"; then - deploy_path=$("$ZULIP_PATH"/scripts/lib/zulip_tools.py make_deploy_path) - mv "$ZULIP_PATH" "$deploy_path" - ln -nsf /home/zulip/deployments/next "$ZULIP_PATH" - ln -nsf "$deploy_path" /home/zulip/deployments/next - ln -nsf "$deploy_path" /home/zulip/deployments/current - ln -nsf /etc/zulip/settings.py "$deploy_path"/zproject/prod_settings.py - mkdir -p "$deploy_path"/prod-static/serve - cp -rT "$deploy_path"/prod-static/serve /home/zulip/prod-static - chown -R zulip:zulip /home/zulip /var/log/zulip /etc/zulip/settings.py - - if ! [ -e "/home/zulip/prod-static/generated" ]; then - # If we're installing from a Git checkout, we need to run - # `tools/update-prod-static` in order to build the static - # assets. - su zulip -c '/home/zulip/deployments/current/tools/update-prod-static' - fi -fi - # Set up a basic .gitconfig for the 'zulip' user if [ -n "$ZULIP_ADMINISTRATOR" ]; then ( @@ -531,21 +508,54 @@ if [ -n "$ZULIP_ADMINISTRATOR" ]; then ) fi +if ! has_class "zulip::app_frontend_base"; then + set +x + cat <