summaryrefslogtreecommitdiff
path: root/deploy-static
blob: d2d43de03ba373dbf0c932cc758c65031ccfa36a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash

set -o errexit -o nounset -o pipefail

./process-static

servers=(
    0.grapheneos.org
    1.grapheneos.org
    2.grapheneos.org
)

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
    ssh $remote cp -a $active $target
    rsync -rptcv --chmod=D755,F644 --delete static-tmp/ $remote:$target
    ssh $remote sync -f $target
    ssh $remote ln -snf $target /srv/grapheneos.org
    ssh $remote sync /srv/grapheneos.org

    sed "s|/srv/grapheneos.org|$target|" nginx-tmp/nginx.conf > nginx-tmp/nginx.conf.root
    rsync -rptcv --chmod=D755,F644 --delete nginx-tmp/nginx.conf.root $remote:/etc/nginx/nginx.conf
    rsync -rptcv --chmod=D755,F644 --delete nginx-tmp/snippets/ $remote:/etc/nginx/snippets
    ssh $remote 'sync /etc/nginx/nginx.conf /etc/nginx/snippets/*'
    ssh $remote nginx -s reload

    echo
    echo active is now $target
    echo
done