2022-05-20 15:06:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-29 15:34:17 +00:00
|
|
|
set -eu
|
2022-05-20 15:06:41 +00:00
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
export DOCKER_HOST="ssh://ubuntu@$BTCPAY_FQDN"
|
|
|
|
|
2022-10-24 01:04:50 +00:00
|
|
|
OPEN_URL=true
|
|
|
|
RUN_SERVICES=true
|
2022-07-29 22:33:24 +00:00
|
|
|
|
2022-07-27 16:38:33 +00:00
|
|
|
# we will re-run the btcpayserver provisioning scripts if directed to do so.
|
2022-05-20 15:06:41 +00:00
|
|
|
# if an update does occur, we grab another backup.
|
|
|
|
if [ "$UPDATE_BTCPAY" = true ]; then
|
|
|
|
# run the update.
|
2022-07-27 16:38:33 +00:00
|
|
|
ssh "$FQDN" "bash -c $BTCPAY_SERVER_APPPATH/btcpay-down.sh"
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-07-27 16:38:33 +00:00
|
|
|
# btcpay-update.sh brings services back up, but does not take them down.
|
|
|
|
ssh "$FQDN" "sudo bash -c $BTCPAY_SERVER_APPPATH/btcpay-update.sh"
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-08-15 13:37:13 +00:00
|
|
|
sleep 20
|
2022-10-24 01:04:50 +00:00
|
|
|
|
2022-07-27 16:38:33 +00:00
|
|
|
elif [ "$RESTORE_BTCPAY" = true ]; then
|
2022-07-29 22:33:24 +00:00
|
|
|
# run the update.
|
|
|
|
ssh "$FQDN" "bash -c $BTCPAY_SERVER_APPPATH/btcpay-down.sh"
|
2022-10-27 01:41:14 +00:00
|
|
|
sleep 15
|
2022-08-15 13:37:13 +00:00
|
|
|
|
2022-07-27 16:38:33 +00:00
|
|
|
./restore.sh
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-07-29 22:33:24 +00:00
|
|
|
RUN_SERVICES=true
|
|
|
|
OPEN_URL=true
|
|
|
|
|
2022-07-27 16:38:33 +00:00
|
|
|
elif [ "$RECONFIGURE_BTCPAY_SERVER" == true ]; then
|
|
|
|
# the administrator may have indicated a reconfig;
|
|
|
|
# if so, we re-run setup script.
|
2022-08-03 14:53:11 +00:00
|
|
|
./stub_btcpay_setup.sh
|
|
|
|
|
|
|
|
RUN_SERVICES=true
|
|
|
|
OPEN_URL=true
|
2022-07-27 16:38:33 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# if the script gets this far, then we grab a regular backup.
|
2022-08-24 14:11:50 +00:00
|
|
|
if [ "$BACKUP_BTCPAY" = true ]; then
|
2022-07-27 16:38:33 +00:00
|
|
|
# we just grab a regular backup
|
2022-10-26 23:33:43 +00:00
|
|
|
./backup_btcpay.sh
|
2022-05-20 15:06:41 +00:00
|
|
|
fi
|
|
|
|
|
2022-07-27 16:38:33 +00:00
|
|
|
if [ "$RUN_SERVICES" = true ]; then
|
2022-05-20 15:06:41 +00:00
|
|
|
# The default is to resume services, though admin may want to keep services off (eg., for a migration)
|
|
|
|
# we bring the services back up by default.
|
2022-07-27 16:38:33 +00:00
|
|
|
ssh "$FQDN" "bash -c $BTCPAY_SERVER_APPPATH/btcpay-up.sh"
|
2022-08-15 13:39:10 +00:00
|
|
|
|
2022-07-29 22:33:24 +00:00
|
|
|
OPEN_URL=true
|
2022-05-20 15:06:41 +00:00
|
|
|
|
|
|
|
fi
|
2022-07-29 22:33:24 +00:00
|
|
|
|
|
|
|
if [ "$OPEN_URL" = true ]; then
|
2022-10-31 02:24:25 +00:00
|
|
|
if wait-for-it -t 5 "$PRIMARY_WWW_FQDN:80"; then
|
|
|
|
xdg-open "http://$PRIMARY_WWW_FQDN" > /dev/null 2>&1
|
2022-07-29 22:33:24 +00:00
|
|
|
fi
|
2022-08-03 14:53:11 +00:00
|
|
|
fi
|