#!/bin/bash set -eu CURRENT_REMOTE="$(incus remote get-default)" DEPLOYMENT_STRING= SS_ROOT_PATH="$HOME/ss" REMOTES_PATH="$SS_ROOT_PATH/remotes" PROJECTS_PATH="$SS_ROOT_PATH/projects" SITES_PATH="$SS_ROOT_PATH/sites" INCUS_CONFIG_PATH="$SS_ROOT_PATH/incus" SS_CACHE_PATH="$SS_ROOT_PATH/cache" if echo "$CURRENT_REMOTE" | grep -q "production"; then echo "WARNING: You are running a migration procedure on a production system." echo "" RESPONSE= read -r -p " Are you sure you want to continue (y) ": RESPONSE if [ "$RESPONSE" != "y" ]; then echo "STOPPING." exit 1 fi # check if there are any uncommited changes. It's dangerous to # alter production systems when you have commits to make or changes to stash. if git update-index --refresh | grep -q "needs update"; then echo "ERROR: You have uncommited changes! Better stash your work with 'git stash'." exit 1 fi fi . ./deployment_defaults.sh export REMOTE_PATH="$REMOTES_PATH/$CURRENT_REMOTE" REMOTE_DEFINITION="$REMOTE_PATH/remote.conf" export REMOTE_DEFINITION="$REMOTE_DEFINITION" # ensure the remote definition exists. if [ ! -f "$REMOTE_DEFINITION" ]; then echo "ERROR: The remote definition could not be found. You may need to run 'ss-remote'." echo "INFO: Consult https://www.sovereign-stack.org/ss-remote for more information." exit 1 fi source "$REMOTE_DEFINITION" # default values are already at regtest mode. if [ "$BITCOIN_CHAIN" = testnet ]; then WWW_SSDATA_DISK_SIZE_GB=30 WWW_BACKUP_DISK_SIZE_GB=30 WWW_DOCKER_DISK_SIZE_GB=50 BTCPAYSERVER_SSDATA_DISK_SIZE_GB=30 BTCPAYSERVER_BACKUP_DISK_SIZE_GB=30 BTCPAYSERVER_DOCKER_DISK_SIZE_GB=100 LNPLAY_SERVER_SSDATA_DISK_SIZE_GB=20 LNPLAY_SERVER_BACKUP_DISK_SIZE_GB=20 LNPLAY_SSERVER_DOCKER_DISK_SIZE_GB=20 elif [ "$BITCOIN_CHAIN" = mainnet ]; then WWW_SSDATA_DISK_SIZE_GB=40 WWW_BACKUP_DISK_SIZE_GB=40 WWW_DOCKER_DISK_SIZE_GB=1000 BTCPAYSERVER_SSDATA_DISK_SIZE_GB=30 BTCPAYSERVER_BACKUP_DISK_SIZE_GB=30 BTCPAYSERVER_DOCKER_DISK_SIZE_GB=500 LNPLAY_SERVER_SSDATA_DISK_SIZE_GB=20 LNPLAY_SERVER_BACKUP_DISK_SIZE_GB=20 LNPLAY_SSERVER_DOCKER_DISK_SIZE_GB=400 fi export WWW_SSDATA_DISK_SIZE_GB="$WWW_SSDATA_DISK_SIZE_GB" export WWW_BACKUP_DISK_SIZE_GB="$WWW_BACKUP_DISK_SIZE_GB" export WWW_DOCKER_DISK_SIZE_GB="$WWW_DOCKER_DISK_SIZE_GB" export BTCPAYSERVER_SSDATA_DISK_SIZE_GB="$BTCPAYSERVER_SSDATA_DISK_SIZE_GB" export BTCPAYSERVER_BACKUP_DISK_SIZE_GB="$BTCPAYSERVER_BACKUP_DISK_SIZE_GB" export BTCPAYSERVER_DOCKER_DISK_SIZE_GB="$BTCPAYSERVER_DOCKER_DISK_SIZE_GB"