From 2e047978331be521602302da61e0612e928264bd Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 24 Nov 2020 02:39:27 -0500 Subject: [PATCH] stop using www-data user for deployment --- deploy_static | 12 ++++++------ 1 file 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