summaryrefslogtreecommitdiff
path: root/deploy_static
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-11-24 02:39:27 -0500
committerDaniel Micay <danielmicay@gmail.com>2020-11-24 02:39:27 -0500
commit2e047978331be521602302da61e0612e928264bd (patch)
treee32020e31658868420c19ffe9ab5dfebb92a256b /deploy_static
parentb336f664adddf955eea8a77a0163bd968a873fc6 (diff)
stop using www-data user for deployment
Diffstat (limited to 'deploy_static')
-rwxr-xr-xdeploy_static12
1 files changed, 6 insertions, 6 deletions
diff --git a/deploy_static b/deploy_static
index 3f236bd7..bdea4f06 100755
--- a/deploy_static
+++ b/deploy_static
@@ -5,13 +5,13 @@ set -o errexit -o nounset -o pipefail
./validate_static
./process_static
-remote=www-data@grapheneos.org
-active=$(ssh $remote readlink html)
+remote=root@grapheneos.org
+active=$(ssh $remote readlink /var/www/html)
-if [[ $active = html_a ]]; then
- target=html_b
+if [[ $active = /var/www/html_a ]]; then
+ target=/var/www/html_b
else
- target=html_a
+ target=/var/www/html_a
fi
echo active is $active
@@ -20,7 +20,7 @@ echo
rsync -rpcv --chmod=D755,F644 --delete static_tmp/ $remote:$target
ssh $remote sync -f $target
-ssh $remote ln -snf $target html
+ssh $remote ln -snf $target /var/www/html
ssh $remote sync .
echo