mirror of
https://github.com/GrapheneOS/matrix.grapheneos.org.git
synced 2024-10-01 04:45:34 -04:00
30 lines
852 B
Bash
Executable File
30 lines
852 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
./process-static
|
|
|
|
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
|
|
|
|
ssh $remote "rm -rf $target && cp -a $active $target"
|
|
rsync -rpcv --chmod=D755,F644 --delete static-tmp/ $remote:$target
|
|
ssh $remote "sync -f $target && ln -snf $target /srv/element.grapheneos.org && sync /srv/element.grapheneos.org"
|
|
|
|
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
|
|
ssh $remote "sync -f /etc/nginx/nginx.conf && nginx -s reload"
|
|
|
|
echo
|
|
echo active is now $target
|