matrix.grapheneos.org/deploy-static

40 lines
1.3 KiB
Plaintext
Raw Normal View History

#!/bin/bash
set -o errexit -o nounset -o pipefail
touch lock
exec {fd}< lock
if ! flock -n $fd; then
2022-05-08 09:44:06 +00:00
echo already processing/deploying static files >&2
exit 1
fi
./process-static $fd
remote=root@matrix.grapheneos.org
active=$(ssh $remote readlink /srv/element.grapheneos.org)
if [[ $active = /srv/element.grapheneos.org_a ]]; then
target=/srv/element.grapheneos.org_b
else
target=/srv/element.grapheneos.org_a
fi
echo active is $active
echo target is $target
echo
2022-03-24 22:43:43 +00:00
ssh $remote "rm -rf $target && cp -a $active $target"
2023-07-26 08:46:39 +00:00
rsync -rpcv --chmod=D755,F644 --delete --fsync --preallocate static-tmp/ $remote:$target
2022-05-05 06:22:36 +00:00
ssh $remote "ln -snf $target /srv/element.grapheneos.org && sync /srv/element.grapheneos.org"
echo "root $target;" > nginx-tmp/root_element.grapheneos.org.conf
2023-07-26 08:46:39 +00:00
rsync -rptcv --chmod=D755,F644 --delete --fsync --preallocate nginx-tmp/{nginx.conf,mime.types,root_element.grapheneos.org.conf,snippets} $remote:/etc/nginx/
rsync -ptcv --chmod=755 --fsync --preallocate remote-backup $remote:/usr/local/bin/
2023-07-26 08:46:39 +00:00
rsync -ptcv --chmod=644 --fsync --preallocate systemd/system/remote-backup.timer $remote:/etc/systemd/system/remote-backup.timer
rsync -ptcv --chmod=644 --fsync --preallocate systemd/system/remote-backup.service $remote:/etc/systemd/system/remote-backup.service
2022-05-05 06:22:36 +00:00
ssh $remote nginx -s reload
echo
echo active is now $target