matrix.grapheneos.org/deploy-static

42 lines
1.4 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"
2022-05-05 06:22:36 +00:00
rsync -rpcv --fsync --chmod=D755,F644 --delete static-tmp/ $remote:$target
ssh $remote "ln -snf $target /srv/element.grapheneos.org && sync /srv/element.grapheneos.org"
sed -i "s|/srv/element.grapheneos.org|$target|" nginx-tmp/nginx.conf
2022-06-09 22:50:24 +00:00
rsync -rptcv --fsync --chmod=D755,F644 --delete nginx-tmp/nginx.conf $remote:/etc/nginx/nginx.conf
rsync -rptcv --fsync --chmod=D755,F644 --delete nginx-tmp/mime.types $remote:/etc/nginx/mime.types
rsync -rptcv --fsync --chmod=D755,F644 --delete nginx-tmp/snippets/ $remote:/etc/nginx/snippets
2023-07-15 19:13:28 +00:00
rsync -ptcv --fsync --chmod=755 {local-backup,remote-backup} $remote:/usr/local/bin/
rsync -ptcv --fsync --chmod=644 systemd/system/remote-backup.timer $remote:/etc/systemd/system/remote-backup.timer
rsync -ptcv --fsync --chmod=644 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