From 104e547a57fcd8b6884ab6a7c11bc42d1d9f671e Mon Sep 17 00:00:00 2001 From: Derek Smith Date: Thu, 5 Jan 2023 11:12:50 -0500 Subject: [PATCH] Make --restart-front-end default. Goal is opposite --- deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 9f41474..125bc17 100755 --- a/deploy.sh +++ b/deploy.sh @@ -23,7 +23,7 @@ RECONFIGURE_BTCPAY_SERVER=false CLUSTER_NAME="$(lxc remote get-default)" STOP_SERVICES=false USER_SAYS_YES=false -RESTART_FRONT_END=false +RESTART_FRONT_END=true # grab any modifications from the command line. for i in "$@"; do @@ -32,6 +32,7 @@ for i in "$@"; do RESTORE_WWW=true BACKUP_APPS=false RUN_CERT_RENEWAL=false + RESTART_FRONT_END=true shift ;; --restore-btcpay) @@ -51,6 +52,7 @@ for i in "$@"; do ;; --stop) STOP_SERVICES=true + RESTART_FRONT_END=true shift ;; --restart-front-end)