2021-07-06 13:53:00 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
|
2021-07-11 19:51:56 -04:00
|
|
|
./process-static
|
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"
|
2021-11-23 18:45:28 -05:00
|
|
|
rsync -rpcv --chmod=D755,F644 --delete static-tmp/ $remote:$target
|
2022-03-24 18:43:43 -04:00
|
|
|
ssh $remote "sync -f $target && 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
|
|
|
|
rsync -rpcv --chmod=D755,F644 --delete nginx-tmp/nginx.conf $remote:/etc/nginx/nginx.conf
|
2022-03-24 18:43:43 -04:00
|
|
|
ssh $remote "sync -f /etc/nginx/nginx.conf && nginx -s reload"
|
2021-07-06 13:53:00 -04:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo active is now $target
|