58 lines
1.8 KiB
Bash
Executable File
58 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
shopt -s extglob
|
|
|
|
touch lock
|
|
exec {fd}< lock
|
|
if ! flock -n $fd; then
|
|
echo already processing/deploying static files >&2
|
|
exit 1
|
|
fi
|
|
|
|
./process-static $fd
|
|
|
|
servers=(staging.grapheneos.org)
|
|
|
|
# use last modified timestamps from staging.grapheneos.org
|
|
rsync -rptcv --chmod=D755,F644 --delete --fsync --preallocate root@${servers[0]}:/srv/grapheneos.org/ static-staging
|
|
rsync -pcv --chmod=D755,F644 --fsync --preallocate static-staging/sitemap.xml{,.gz,.br} static-tmp/
|
|
rsync -rpcv --chmod=D755,F644 --delete --fsync --preallocate static-tmp/ static-staging
|
|
for f in static-staging/**.*(br|gz); do
|
|
touch -r "${f%.*}" "$f"
|
|
done
|
|
changed="$(./generate-sitemap)"
|
|
xmllint --noblanks static-tmp/sitemap.xml --output static-tmp/sitemap.xml
|
|
brotli -f static-tmp/sitemap.xml
|
|
zopfli static-tmp/sitemap.xml
|
|
rsync -pcv --chmod=D755,F644 --fsync --preallocate static-tmp/sitemap.xml{,.gz,.br} static-staging/
|
|
|
|
for server in ${servers[@]}; do
|
|
echo $server
|
|
|
|
remote=root@$server
|
|
active=$(ssh $remote readlink /srv/grapheneos.org)
|
|
|
|
if [[ $active = /srv/grapheneos.org_a ]]; then
|
|
target=/srv/grapheneos.org_b
|
|
else
|
|
target=/srv/grapheneos.org_a
|
|
fi
|
|
|
|
echo active is $active
|
|
echo target is $target
|
|
echo
|
|
|
|
ssh $remote "rm -rf $target && cp -a $active $target"
|
|
rsync -rptcv --chmod=D755,F644 --delete --fsync --preallocate static-staging/ $remote:$target
|
|
ssh $remote "ln -snf $target /srv/grapheneos.org && sync /srv/grapheneos.org"
|
|
|
|
echo "root $target;" > nginx-tmp/root_grapheneos.org.conf
|
|
rsync -rpcv --chmod=D755,F644 --delete --fsync --preallocate nginx-tmp/{nginx.conf,mime.types,root_grapheneos.org.conf,snippets} $remote:/etc/nginx/
|
|
ssh $remote nginx -s reload
|
|
|
|
echo
|
|
echo active is now $target
|
|
echo
|
|
done
|