54 lines
1.4 KiB
Bash
Executable File
54 lines
1.4 KiB
Bash
Executable File
#!/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"
|
|
|