From 70d203c1c8fe1faf2bababd8aee6181e95cd745f Mon Sep 17 00:00:00 2001 From: Greg Price Date: Wed, 24 Jan 2018 13:29:24 -0800 Subject: [PATCH] install: Add experimental option to go straight through more install steps. We'll make this the normal behavior soon, once we're satisfied with our arrangements for sending the admin straight to realm creation and using the app without configuring email. The instructions in the docs will also have to change accordingly, of course. --- scripts/lib/install | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/scripts/lib/install b/scripts/lib/install index 7d0faa9c4f..9e74786531 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -16,7 +16,7 @@ EOF # Shell option parsing. Over time, we'll want to move some of the # environment variables below into this self-documenting system. -args="$(getopt -o '' --long help,self-signed-cert,certbot,hostname:,email: -n "$0" -- "$@")" +args="$(getopt -o '' --long help,self-signed-cert,certbot,hostname:,email:,express -n "$0" -- "$@")" eval "set -- $args" while true; do case "$1" in @@ -42,6 +42,10 @@ while true; do shift shift ;; + --express) # experimental, not documented + EXPRESS_SETUP=1 + shift + ;; --) shift break @@ -279,8 +283,9 @@ if [ -e "/var/run/supervisor.sock" ]; then chown zulip:zulip /var/run/supervisor.sock fi -set +x -cat <