2023-03-06 19:30:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
set -e
|
2023-03-06 19:30:56 +00:00
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2023-03-06 20:43:12 +00:00
|
|
|
LATEST_GIT_COMMIT="$(cat ./.git/refs/heads/main)"
|
2023-03-06 19:30:56 +00:00
|
|
|
export LATEST_GIT_COMMIT="$LATEST_GIT_COMMIT"
|
|
|
|
|
|
|
|
# check to ensure dependencies are met.
|
|
|
|
for cmd in wait-for-it dig rsync sshfs lxc; do
|
|
|
|
if ! command -v "$cmd" >/dev/null 2>&1; then
|
|
|
|
echo "This script requires \"${cmd}\" to be installed. Please run 'install.sh'."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# do a spot check; if we are on production warn.
|
|
|
|
if lxc remote get-default | grep -q "production"; then
|
|
|
|
echo "WARNING: You are running command against a production system!"
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
# 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! You MUST commit or stash all changes to continue."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
RESPONSE=
|
|
|
|
read -r -p " Are you sure you want to continue (y) ": RESPONSE
|
|
|
|
if [ "$RESPONSE" != "y" ]; then
|
|
|
|
echo "STOPPING."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2023-03-08 22:12:36 +00:00
|
|
|
# switch to the defult project. We will switch to something more specific later.
|
|
|
|
if ! lxc info | grep "project:" | grep -q default; then
|
|
|
|
lxc project switch default
|
|
|
|
fi
|
|
|
|
|
2023-03-06 19:30:56 +00:00
|
|
|
DOMAIN_NAME=
|
|
|
|
RUN_CERT_RENEWAL=true
|
|
|
|
SKIP_WWW=false
|
|
|
|
RESTORE_WWW=false
|
2023-03-18 15:04:59 +00:00
|
|
|
RESTORE_CERTS=false
|
2023-03-06 19:30:56 +00:00
|
|
|
BACKUP_CERTS=true
|
|
|
|
BACKUP_APPS=true
|
|
|
|
BACKUP_BTCPAY=true
|
|
|
|
BACKUP_BTCPAY_ARCHIVE_PATH=
|
|
|
|
RESTORE_BTCPAY=false
|
|
|
|
SKIP_BTCPAY=false
|
|
|
|
UPDATE_BTCPAY=false
|
|
|
|
RECONFIGURE_BTCPAY_SERVER=false
|
2023-03-08 22:12:36 +00:00
|
|
|
REMOTE_NAME="$(lxc remote get-default)"
|
2023-03-06 19:30:56 +00:00
|
|
|
STOP_SERVICES=false
|
|
|
|
USER_SAYS_YES=false
|
|
|
|
RESTART_FRONT_END=true
|
2023-03-14 15:35:28 +00:00
|
|
|
USER_TARGET_PROJECT=
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
# grab any modifications from the command line.
|
|
|
|
for i in "$@"; do
|
|
|
|
case $i in
|
2023-03-18 15:04:59 +00:00
|
|
|
--restore-certs)
|
|
|
|
RESTORE_CERTS=true
|
|
|
|
shift
|
|
|
|
;;
|
2023-03-06 19:30:56 +00:00
|
|
|
--restore-www)
|
|
|
|
RESTORE_WWW=true
|
2023-03-18 22:30:48 +00:00
|
|
|
RESTORE_CERTS=true
|
2023-03-06 19:30:56 +00:00
|
|
|
BACKUP_APPS=false
|
|
|
|
RUN_CERT_RENEWAL=false
|
|
|
|
RESTART_FRONT_END=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--restore-btcpay)
|
|
|
|
RESTORE_BTCPAY=true
|
|
|
|
BACKUP_BTCPAY=false
|
|
|
|
RUN_CERT_RENEWAL=false
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--no-backup-www)
|
|
|
|
BACKUP_CERTS=false
|
|
|
|
BACKUP_APPS=false
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--stop)
|
|
|
|
STOP_SERVICES=true
|
|
|
|
RESTART_FRONT_END=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--restart-front-end)
|
|
|
|
RESTART_FRONT_END=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--backup-archive-path=*)
|
|
|
|
BACKUP_BTCPAY_ARCHIVE_PATH="${i#*=}"
|
|
|
|
shift
|
|
|
|
;;
|
2023-03-14 15:35:28 +00:00
|
|
|
--project=*)
|
|
|
|
USER_TARGET_PROJECT="${i#*=}"
|
|
|
|
shift
|
|
|
|
;;
|
2023-03-06 19:30:56 +00:00
|
|
|
--update-btcpay)
|
|
|
|
UPDATE_BTCPAY=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--skip-www)
|
|
|
|
SKIP_WWW=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--skip-btcpay)
|
|
|
|
SKIP_BTCPAY=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--no-cert-renew)
|
|
|
|
RUN_CERT_RENEWAL=false
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--reconfigure-btcpay)
|
|
|
|
RECONFIGURE_BTCPAY_SERVER=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-y)
|
|
|
|
USER_SAYS_YES=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unexpected option: $1"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$RESTORE_BTCPAY" = true ] && [ -z "$BACKUP_BTCPAY_ARCHIVE_PATH" ]; then
|
2023-03-19 17:43:10 +00:00
|
|
|
echo "ERROR: Use the '--backup-archive-path=/path/to/btcpay/archive.tar.gz' option when restoring btcpay server."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$RESTORE_BTCPAY" = true ] && [ ! -f "$BACKUP_BTCPAY_ARCHIVE_PATH" ]; then
|
|
|
|
echo "ERROR: The backup archive path you specified DOES NOT exist!"
|
2023-03-06 19:30:56 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# set up our default paths.
|
|
|
|
source ../../defaults.sh
|
|
|
|
|
|
|
|
export DOMAIN_NAME="$DOMAIN_NAME"
|
|
|
|
export REGISTRY_DOCKER_IMAGE="registry:2"
|
|
|
|
export RESTORE_WWW="$RESTORE_WWW"
|
|
|
|
export STOP_SERVICES="$STOP_SERVICES"
|
|
|
|
export BACKUP_CERTS="$BACKUP_CERTS"
|
|
|
|
export BACKUP_APPS="$BACKUP_APPS"
|
|
|
|
export RESTORE_BTCPAY="$RESTORE_BTCPAY"
|
|
|
|
export BACKUP_BTCPAY="$BACKUP_BTCPAY"
|
|
|
|
export RUN_CERT_RENEWAL="$RUN_CERT_RENEWAL"
|
2023-03-08 22:12:36 +00:00
|
|
|
export REMOTE_NAME="$REMOTE_NAME"
|
|
|
|
export REMOTE_PATH="$REMOTES_DIR/$REMOTE_NAME"
|
2023-03-06 19:30:56 +00:00
|
|
|
export USER_SAYS_YES="$USER_SAYS_YES"
|
|
|
|
export BACKUP_BTCPAY_ARCHIVE_PATH="$BACKUP_BTCPAY_ARCHIVE_PATH"
|
|
|
|
export RESTART_FRONT_END="$RESTART_FRONT_END"
|
2023-03-18 15:04:59 +00:00
|
|
|
export RESTORE_CERTS="$RESTORE_CERTS"
|
|
|
|
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
# todo convert this to Trezor-T
|
|
|
|
SSH_PUBKEY_PATH="$SSH_HOME/id_rsa.pub"
|
|
|
|
export SSH_PUBKEY_PATH="$SSH_PUBKEY_PATH"
|
|
|
|
if [ ! -f "$SSH_PUBKEY_PATH" ]; then
|
|
|
|
# generate a new SSH key for the base vm image.
|
|
|
|
ssh-keygen -f "$SSH_HOME/id_rsa" -t ecdsa -b 521 -N ""
|
|
|
|
fi
|
|
|
|
|
2023-03-08 22:12:36 +00:00
|
|
|
# ensure our remote path is created.
|
|
|
|
mkdir -p "$REMOTE_PATH"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
REMOTE_DEFINITION="$REMOTE_PATH/remote.conf"
|
2023-03-08 22:12:36 +00:00
|
|
|
if [ ! -f "$REMOTE_DEFINITION" ]; then
|
|
|
|
echo "ERROR: The remote definition could not be found. You may need to re-run 'ss-remote'."
|
2023-03-06 19:30:56 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export REMOTE_DEFINITION="$REMOTE_DEFINITION"
|
2023-03-08 22:12:36 +00:00
|
|
|
source "$REMOTE_DEFINITION"
|
2023-03-13 17:38:14 +00:00
|
|
|
export LXD_REMOTE_PASSWORD="$LXD_REMOTE_PASSWORD"
|
|
|
|
export DEPLOYMENT_STRING="$DEPLOYMENT_STRING"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
# this is our password generation mechanism. Relying on GPG for secure password generation
|
|
|
|
function new_pass {
|
|
|
|
gpg --gen-random --armor 1 25
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function stub_site_definition {
|
|
|
|
mkdir -p "$SITE_PATH" "$PROJECT_PATH/sites"
|
|
|
|
|
2023-03-08 22:12:36 +00:00
|
|
|
# create a symlink from the PROJECT_PATH/sites/DOMAIN_NAME to the ss-sites/domain name
|
2023-03-06 19:30:56 +00:00
|
|
|
if [ ! -d "$PROJECT_PATH/sites/$DOMAIN_NAME" ]; then
|
|
|
|
ln -s "$SITE_PATH" "$PROJECT_PATH/sites/$DOMAIN_NAME"
|
|
|
|
fi
|
|
|
|
|
2023-03-13 17:53:18 +00:00
|
|
|
if [ ! -f "$SITE_PATH/site.conf" ]; then
|
2023-03-06 19:30:56 +00:00
|
|
|
# check to see if the enf file exists. exist if not.
|
2023-03-13 17:53:18 +00:00
|
|
|
SITE_DEFINITION_PATH="$SITE_PATH/site.conf"
|
2023-03-06 19:30:56 +00:00
|
|
|
if [ ! -f "$SITE_DEFINITION_PATH" ]; then
|
|
|
|
|
2023-03-13 17:53:18 +00:00
|
|
|
# stub out a site.conf with new passwords.
|
2023-03-06 19:30:56 +00:00
|
|
|
cat >"$SITE_DEFINITION_PATH" <<EOL
|
2023-03-14 15:35:28 +00:00
|
|
|
# https://www.sovereign-stack.org/ss-deploy/#siteconf
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-18 15:07:48 +00:00
|
|
|
DOMAIN_NAME="${DOMAIN_NAME}"
|
|
|
|
# BTCPAY_ALT_NAMES="tip,store,pay,send"
|
|
|
|
SITE_LANGUAGE_CODES="en"
|
|
|
|
DUPLICITY_BACKUP_PASSPHRASE="$(new_pass)"
|
|
|
|
DEPLOY_GHOST=true
|
|
|
|
DEPLOY_CLAMS=true
|
|
|
|
DEPLOY_NEXTCLOUD=false
|
|
|
|
NOSTR_ACCOUNT_PUBKEY=
|
|
|
|
DEPLOY_GITEA=false
|
|
|
|
GHOST_MYSQL_PASSWORD="$(new_pass)"
|
|
|
|
GHOST_MYSQL_ROOT_PASSWORD="$(new_pass)"
|
|
|
|
NEXTCLOUD_MYSQL_PASSWORD="$(new_pass)"
|
|
|
|
NEXTCLOUD_MYSQL_ROOT_PASSWORD="$(new_pass)"
|
|
|
|
GITEA_MYSQL_PASSWORD="$(new_pass)"
|
|
|
|
GITEA_MYSQL_ROOT_PASSWORD="$(new_pass)"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
EOL
|
|
|
|
|
|
|
|
chmod 0744 "$SITE_DEFINITION_PATH"
|
2023-03-13 17:53:18 +00:00
|
|
|
echo "INFO: we stubbed a new site.conf for you at '$SITE_DEFINITION_PATH'. Go update it!"
|
2023-03-06 19:30:56 +00:00
|
|
|
exit 1
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
for PROJECT_CHAIN in ${DEPLOYMENT_STRING//,/ }; do
|
|
|
|
NO_PARENS="${PROJECT_CHAIN:1:${#PROJECT_CHAIN}-2}"
|
|
|
|
PROJECT_PREFIX=$(echo "$NO_PARENS" | cut -d'|' -f1)
|
|
|
|
BITCOIN_CHAIN=$(echo "$NO_PARENS" | cut -d'|' -f2)
|
|
|
|
export PROJECT_PREFIX="$PROJECT_PREFIX"
|
|
|
|
export BITCOIN_CHAIN="$BITCOIN_CHAIN"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
PROJECT_NAME="$PROJECT_PREFIX-$BITCOIN_CHAIN"
|
|
|
|
PROJECT_PATH="$PROJECTS_DIR/$PROJECT_NAME"
|
2023-03-14 15:35:28 +00:00
|
|
|
|
|
|
|
# if the user sets USER_TARGET_PROJECT, let's ensure the project exists.
|
|
|
|
if [ -n "$USER_TARGET_PROJECT" ]; then
|
|
|
|
|
|
|
|
if [ "$PROJECT_NAME" != "$USER_TARGET_PROJECT" ]; then
|
|
|
|
echo "INFO: Skipping project '$PROJECT_NAME' since the system owner has used the --project switch."
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
export PROJECT_NAME="$PROJECT_NAME"
|
|
|
|
export PROJECT_PATH="$PROJECT_PATH"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
mkdir -p "$PROJECT_PATH" "$REMOTE_PATH/projects"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# create a symlink from ./remotepath/projects/project
|
|
|
|
if [ ! -d "$REMOTE_PATH/projects/$PROJECT_NAME" ]; then
|
|
|
|
ln -s "$PROJECT_PATH" "$REMOTE_PATH/projects/$PROJECT_NAME"
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
# check to see if the enf file exists. exist if not.
|
|
|
|
PROJECT_DEFINITION_PATH="$PROJECT_PATH/project.conf"
|
|
|
|
if [ ! -f "$PROJECT_DEFINITION_PATH" ]; then
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
# stub out a project.conf
|
|
|
|
cat >"$PROJECT_DEFINITION_PATH" <<EOL
|
|
|
|
# see https://www.sovereign-stack.org/ss-deploy/#projectconf for more info.
|
|
|
|
|
|
|
|
PRIMARY_DOMAIN="domain0.tld"
|
|
|
|
# OTHER_SITES_LIST="domain1.tld,domain2.tld,domain3.tld"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
WWW_SERVER_MAC_ADDRESS=
|
|
|
|
# WWW_SERVER_CPU_COUNT="6"
|
|
|
|
# WWW_SERVER_MEMORY_MB="4096"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
BTCPAYSERVER_MAC_ADDRESS=
|
|
|
|
# BTCPAY_SERVER_CPU_COUNT="4"
|
|
|
|
# BTCPAY_SERVER_MEMORY_MB="4096"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
EOL
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
chmod 0744 "$PROJECT_DEFINITION_PATH"
|
|
|
|
echo "INFO: we stubbed a new project.conf for you at '$PROJECT_DEFINITION_PATH'. Go update it!"
|
|
|
|
echo "INFO: Learn more at https://www.sovereign-stack.org/ss-deploy/"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# source project defition.
|
|
|
|
source "$PROJECT_DEFINITION_PATH"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
if [ -z "$PRIMARY_DOMAIN" ]; then
|
|
|
|
echo "ERROR: The PRIMARY_DOMAIN is not specified. Check your project.conf."
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
if [ -z "$WWW_SERVER_MAC_ADDRESS" ]; then
|
|
|
|
echo "ERROR: the WWW_SERVER_MAC_ADDRESS is not specified. Check your project.conf."
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
if [ -z "$BTCPAYSERVER_MAC_ADDRESS" ]; then
|
|
|
|
echo "ERROR: the BTCPAYSERVER_MAC_ADDRESS is not specified. Check your project.conf."
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# the DOMAIN_LIST is a complete list of all our domains. We often iterate over this list.
|
|
|
|
DOMAIN_LIST="${PRIMARY_DOMAIN}"
|
|
|
|
if [ -n "$OTHER_SITES_LIST" ]; then
|
|
|
|
DOMAIN_LIST="${DOMAIN_LIST},${OTHER_SITES_LIST}"
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export DOMAIN_LIST="$DOMAIN_LIST"
|
|
|
|
export DOMAIN_COUNT=$(("$(echo "$DOMAIN_LIST" | tr -cd , | wc -c)"+1))
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# let's provision our primary domain first.
|
|
|
|
export DOMAIN_NAME="$PRIMARY_DOMAIN"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export SITE_PATH="$SITES_PATH/$DOMAIN_NAME"
|
|
|
|
export PRIMARY_WWW_FQDN="$WWW_HOSTNAME.$DOMAIN_NAME"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
stub_site_definition
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# bring the VMs up under the primary domain name.
|
2023-03-08 22:12:36 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export UPDATE_BTCPAY="$UPDATE_BTCPAY"
|
|
|
|
export RECONFIGURE_BTCPAY_SERVER="$RECONFIGURE_BTCPAY_SERVER"
|
2023-03-08 22:12:36 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# iterate over all our server endpoints and provision them if needed.
|
|
|
|
# www
|
|
|
|
VPS_HOSTNAME=
|
2023-03-08 22:12:36 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
if ! lxc image list --format csv | grep -q "$DOCKER_BASE_IMAGE_NAME"; then
|
|
|
|
# create the lxd base image.
|
|
|
|
./create_lxc_base.sh
|
|
|
|
fi
|
2023-03-08 22:12:36 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
for VIRTUAL_MACHINE in www btcpayserver; do
|
|
|
|
export VIRTUAL_MACHINE="$VIRTUAL_MACHINE"
|
|
|
|
FQDN=
|
2023-03-08 22:12:36 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export SITE_PATH="$SITES_PATH/$DOMAIN_NAME"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
source "$SITE_PATH/site.conf"
|
|
|
|
source ./domain_env.sh
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-14 15:35:28 +00:00
|
|
|
# VALIDATE THE INPUT from the ENVFILE
|
|
|
|
if [ -z "$DOMAIN_NAME" ]; then
|
|
|
|
echo "ERROR: DOMAIN_NAME not specified in your site.conf."
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# create the lxc project as specified by PROJECT_NAME
|
|
|
|
if ! lxc project list | grep -q "$PROJECT_NAME"; then
|
|
|
|
lxc project create "$PROJECT_NAME"
|
2023-03-18 22:12:09 +00:00
|
|
|
lxc project set "$PROJECT_NAME" features.networks=true features.images=false features.storage.volumes=false
|
2023-03-13 17:38:14 +00:00
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# Goal is to get the macvlan interface.
|
|
|
|
LXD_SS_CONFIG_LINE=
|
|
|
|
if lxc network list --format csv --project=default | grep lxdbr0 | grep -q "ss-config"; then
|
|
|
|
LXD_SS_CONFIG_LINE="$(lxc network list --format csv --project=default | grep lxdbr0 | grep ss-config)"
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
if [ -z "$LXD_SS_CONFIG_LINE" ]; then
|
|
|
|
echo "ERROR: the MACVLAN interface has not been specified. You may need to run 'ss-remote' again."
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
CONFIG_ITEMS="$(echo "$LXD_SS_CONFIG_LINE" | awk -F'"' '{print $2}')"
|
|
|
|
DATA_PLANE_MACVLAN_INTERFACE="$(echo "$CONFIG_ITEMS" | cut -d ',' -f2)"
|
|
|
|
export DATA_PLANE_MACVLAN_INTERFACE="$DATA_PLANE_MACVLAN_INTERFACE"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# Now let's switch to the new project to ensure new resources are created under the project scope.
|
|
|
|
if ! lxc info | grep "project:" | grep -q "$PROJECT_NAME"; then
|
|
|
|
echo "INFO: switch to lxd project '$PROJECT_NAME'."
|
|
|
|
lxc project switch "$PROJECT_NAME"
|
2023-03-06 19:30:56 +00:00
|
|
|
fi
|
2023-03-13 17:38:14 +00:00
|
|
|
|
|
|
|
# check if the OVN network exists in this project.
|
|
|
|
if ! lxc network list | grep -q "ss-ovn"; then
|
|
|
|
lxc network create ss-ovn --type=ovn network=lxdbr1 ipv6.address=none
|
2023-03-06 19:30:56 +00:00
|
|
|
fi
|
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export MAC_ADDRESS_TO_PROVISION=
|
|
|
|
export VPS_HOSTNAME="$VPS_HOSTNAME"
|
|
|
|
export FQDN="$VPS_HOSTNAME.$DOMAIN_NAME"
|
|
|
|
|
|
|
|
if [ "$VIRTUAL_MACHINE" = www ]; then
|
|
|
|
if [ "$SKIP_WWW" = true ]; then
|
|
|
|
echo "INFO: Skipping WWW due to command line argument."
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
FQDN="$WWW_HOSTNAME.$DOMAIN_NAME"
|
|
|
|
VPS_HOSTNAME="$WWW_HOSTNAME"
|
|
|
|
MAC_ADDRESS_TO_PROVISION="$WWW_SERVER_MAC_ADDRESS"
|
|
|
|
ROOT_DISK_SIZE_GB="$((ROOT_DISK_SIZE_GB + NEXTCLOUD_SPACE_GB))"
|
|
|
|
|
|
|
|
elif [ "$VIRTUAL_MACHINE" = btcpayserver ] || [ "$SKIP_BTCPAY" = true ]; then
|
|
|
|
FQDN="$BTCPAY_HOSTNAME.$DOMAIN_NAME"
|
|
|
|
VPS_HOSTNAME="$BTCPAY_HOSTNAME"
|
|
|
|
MAC_ADDRESS_TO_PROVISION="$BTCPAYSERVER_MAC_ADDRESS"
|
|
|
|
if [ "$BITCOIN_CHAIN" = mainnet ]; then
|
|
|
|
ROOT_DISK_SIZE_GB=150
|
|
|
|
elif [ "$BITCOIN_CHAIN" = testnet ]; then
|
|
|
|
ROOT_DISK_SIZE_GB=70
|
|
|
|
fi
|
|
|
|
|
|
|
|
elif [ "$VIRTUAL_MACHINE" = "$BASE_IMAGE_VM_NAME" ]; then
|
|
|
|
export FQDN="$BASE_IMAGE_VM_NAME"
|
|
|
|
ROOT_DISK_SIZE_GB=8
|
|
|
|
else
|
|
|
|
echo "ERROR: VIRTUAL_MACHINE not within allowable bounds."
|
|
|
|
exit
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export FQDN="$FQDN"
|
|
|
|
export LXD_VM_NAME="${FQDN//./-}"
|
|
|
|
export REMOTE_CERT_DIR="$REMOTE_CERT_BASE_DIR/$FQDN"
|
|
|
|
export MAC_ADDRESS_TO_PROVISION="$MAC_ADDRESS_TO_PROVISION"
|
|
|
|
export PROJECT_PATH="$PROJECT_PATH"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
./deploy_vm.sh
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
if [ "$VIRTUAL_MACHINE" = www ]; then
|
|
|
|
# this tells our local docker client to target the remote endpoint via SSH
|
|
|
|
export DOCKER_HOST="ssh://ubuntu@$PRIMARY_WWW_FQDN"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# enable docker swarm mode so we can support docker stacks.
|
|
|
|
if docker info | grep -q "Swarm: inactive"; then
|
|
|
|
docker swarm init --advertise-addr enp6s0
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
fi
|
2023-03-13 17:38:14 +00:00
|
|
|
|
|
|
|
done
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# let's stub out the rest of our site definitions, if any.
|
|
|
|
for DOMAIN_NAME in ${OTHER_SITES_LIST//,/ }; do
|
|
|
|
export DOMAIN_NAME="$DOMAIN_NAME"
|
|
|
|
export SITE_PATH="$SITES_PATH/$DOMAIN_NAME"
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# stub out the site_defition if it's doesn't exist.
|
|
|
|
stub_site_definition
|
|
|
|
done
|
2023-03-06 19:30:56 +00:00
|
|
|
|
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
# now let's run the www and btcpay-specific provisioning scripts.
|
|
|
|
if [ "$SKIP_WWW" = false ]; then
|
|
|
|
./www/go.sh
|
|
|
|
ssh ubuntu@"$PRIMARY_WWW_FQDN" "echo $LATEST_GIT_COMMIT > /home/ubuntu/.ss-githead"
|
|
|
|
fi
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
export DOMAIN_NAME="$PRIMARY_DOMAIN"
|
|
|
|
export SITE_PATH="$SITES_PATH/$DOMAIN_NAME"
|
|
|
|
if [ "$SKIP_BTCPAY" = false ]; then
|
|
|
|
./btcpayserver/go.sh
|
2023-03-06 19:30:56 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
ssh ubuntu@"$BTCPAY_FQDN" "echo $LATEST_GIT_COMMIT > /home/ubuntu/.ss-githead"
|
|
|
|
fi
|
2023-03-14 15:35:28 +00:00
|
|
|
|
2023-03-13 17:38:14 +00:00
|
|
|
done
|