2021-07-06 13:53:00 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
|
2024-03-06 15:35:21 -05:00
|
|
|
shopt -s extglob
|
|
|
|
|
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
|
2024-03-06 15:35:21 -05:00
|
|
|
|
|
|
|
# use last modified timestamps from matrix.grapheneos.org
|
2024-03-08 23:59:13 -05:00
|
|
|
rsync -rptcv --chmod=D755,F644 --delete --fsync --preallocate $remote:/srv/element.grapheneos.org/ static-production
|
|
|
|
rsync -rpcv --chmod=D755,F644 --delete --fsync --preallocate static-tmp/ static-production
|
|
|
|
for f in static-production/**.*(br|gz); do
|
2024-03-06 15:35:21 -05:00
|
|
|
touch -r "${f%.*}" "$f"
|
|
|
|
done
|
|
|
|
|
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"
|
2024-03-24 23:22:19 -04:00
|
|
|
rsync -rptcv --chmod=D755,F644 --delete --fsync --preallocate static-production/ $remote:$target
|
2022-05-05 02:22:36 -04:00
|
|
|
ssh $remote "ln -snf $target /srv/element.grapheneos.org && sync /srv/element.grapheneos.org"
|
2021-07-06 13:53:00 -04:00
|
|
|
|
2023-07-15 16:30:49 -04:00
|
|
|
echo "root $target;" > nginx-tmp/root_element.grapheneos.org.conf
|
2024-03-03 09:36:45 -05:00
|
|
|
rsync -rpcv --chmod=D755,F644 --delete --fsync --preallocate nginx-tmp/{nginx.conf,mime.types,root_element.grapheneos.org.conf,snippets} $remote:/etc/nginx/
|
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
|
2024-01-26 01:21:04 -05:00
|
|
|
|
2024-03-03 09:36:45 -05:00
|
|
|
rsync -pcv --chmod=755 --fsync --preallocate remote-backup $remote:/usr/local/bin/
|
|
|
|
rsync -pcv --chmod=644 --fsync --preallocate systemd/system/remote-backup.timer $remote:/etc/systemd/system/remote-backup.timer
|
|
|
|
rsync -pcv --chmod=644 --fsync --preallocate systemd/system/remote-backup.service $remote:/etc/systemd/system/remote-backup.service
|
|
|
|
rsync -pcv --chmod=644 --fsync --preallocate systemd/system/mjolnir.service $remote:/etc/systemd/system/mjolnir.service
|
|
|
|
rsync -rpcv --chmod=D755,F644 --delete --fsync --preallocate systemd/system/matterbridge.service.d $remote:/etc/systemd/system/
|
|
|
|
rsync -pcv --chmod=644 --fsync --preallocate backup-public-key.txt cloud-archive-password.txt $remote:
|
|
|
|
rsync -pcv --chmod=600 --chown postgres:postgres --fsync --preallocate postgres/data/{pg_hba,pg_ident,postgresql}.conf $remote:/var/lib/postgres/data/
|