1
1
Fork 1

Make --restart-front-end default. Goal is opposite

This commit is contained in:
Derek Smith 2023-01-05 11:12:50 -05:00
parent 7a08b7cdcf
commit 104e547a57
Signed by: farscapian
GPG Key ID: 8F1CD799CCA516CC
1 changed files with 3 additions and 1 deletions

View File

@ -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)