2023-10-17 17:28:19 +02:00
|
|
|
#! /bin/bash
|
|
|
|
#
|
|
|
|
# This script reads a gzipped tar archive from stdin and deploys it to a
|
|
|
|
# specified location. Contents of the archive are assumed to be relative to
|
|
|
|
# some root, and will be deployed relative to the specified path in the first argument.
|
|
|
|
#
|
|
|
|
# Example usage:
|
|
|
|
# tar -C <deploy_root> -cf - <list of files> | ./deploy.sh <path>
|
|
|
|
|
|
|
|
# Abort deploy on any mistake
|
|
|
|
set -e
|
|
|
|
|
2023-10-17 23:35:57 +02:00
|
|
|
WEB_ROOT=/var/www/wildcard.users.abstractnonsen.se/
|
2023-10-17 17:28:19 +02:00
|
|
|
STORAGE_ROOT=/var/lib/pages/
|
|
|
|
PAGES_USER=pages
|
|
|
|
|
2023-10-17 23:35:57 +02:00
|
|
|
if [ "$#" -ne 2 ]; then
|
|
|
|
echo "Usage: $0 NAMESPACE REPOSITORY"
|
2023-10-17 17:28:19 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$(whoami)" != "${PAGES_USER}" ]; then
|
|
|
|
echo "Script must be run as user '${PAGES_USER}'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-10-17 23:35:57 +02:00
|
|
|
LINK="${WEB_ROOT}/$1/$2"
|
2023-10-17 17:28:19 +02:00
|
|
|
LINK_DIRECTORY=$(dirname "${LINK}")
|
2023-10-17 23:35:57 +02:00
|
|
|
STORAGE_NEW="${STORAGE_ROOT}/$1/$2/$(date +%s)"
|
2023-10-17 17:28:19 +02:00
|
|
|
|
|
|
|
# ensure root paths exist
|
|
|
|
mkdir -p "${LINK_DIRECTORY}"
|
|
|
|
mkdir -p "${STORAGE_NEW}"
|
|
|
|
|
|
|
|
# extract to new storage location (this reads from stdin)
|
|
|
|
echo "Extracting tar files..."
|
|
|
|
tar -C "${STORAGE_NEW}" -xvzf -
|
|
|
|
echo "...extracting done"
|
|
|
|
|
|
|
|
if [ ! -e "${LINK}" ]; then
|
|
|
|
# link does not exist, create it
|
|
|
|
ln -s "${STORAGE_NEW}" "${LINK}"
|
|
|
|
else
|
|
|
|
# read old link
|
|
|
|
STORAGE_OLD=$(readlink "${LINK}")
|
|
|
|
|
|
|
|
# link already exists, repoint it
|
|
|
|
rm -f "${LINK_DIRECTORY}/tmp"
|
|
|
|
ln -s "${STORAGE_NEW}" "${LINK_DIRECTORY}/tmp"
|
|
|
|
mv -T "${LINK_DIRECTORY}/tmp" "${LINK}"
|
|
|
|
|
|
|
|
# remove old deployment
|
|
|
|
rm -rf "${STORAGE_OLD}"
|
|
|
|
fi
|
|
|
|
|
2023-10-17 23:35:57 +02:00
|
|
|
echo "Successfully deployed to https://$1.users.abstractnonsen.se/$2"
|