2021-07-06 13:53:00 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
|
2022-05-05 00:26:23 -04:00
|
|
|
touch lock
|
|
|
|
exec {fd}< lock
|
|
|
|
if ! flock -n $fd; then
|
2022-05-08 05:44:06 -04:00
|
|
|
echo already processing/deploying static files >&2
|
2022-05-05 00:26:23 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
./process-static $fd
|
2021-07-06 13:53:00 -04:00
|
|
|
|
2021-07-11 19:54:32 -04:00
|
|
|
remote=root@matrix.grapheneos.org
|
2021-07-06 13:53:00 -04:00
|
|
|
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 18:43:43 -04:00
|
|
|
ssh $remote "rm -rf $target && cp -a $active $target"
|
2022-05-05 02:22:36 -04: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"
|
2021-07-06 13:53:00 -04:00
|
|
|
|
2021-11-25 20:33:45 -05:00
|
|
|
sed -i "s|/srv/element.grapheneos.org|$target|" nginx-tmp/nginx.conf
|
2022-06-09 18:50:24 -04: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 15:13:28 -04:00
|
|
|
rsync -ptcv --fsync --chmod=755 {local-backup,remote-backup} $remote:/usr/local/bin/
|
2023-02-10 06:00:42 -05:00
|
|
|
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 02:22:36 -04:00
|
|
|
ssh $remote nginx -s reload
|
2021-07-06 13:53:00 -04:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo active is now $target
|