stop using www-data user for deployment

This commit is contained in:
Daniel Micay 2020-11-24 02:39:27 -05:00
parent b336f664ad
commit 2e04797833

View File

@ -5,13 +5,13 @@ set -o errexit -o nounset -o pipefail
./validate_static ./validate_static
./process_static ./process_static
remote=www-data@grapheneos.org remote=root@grapheneos.org
active=$(ssh $remote readlink html) active=$(ssh $remote readlink /var/www/html)
if [[ $active = html_a ]]; then if [[ $active = /var/www/html_a ]]; then
target=html_b target=/var/www/html_b
else else
target=html_a target=/var/www/html_a
fi fi
echo active is $active echo active is $active
@ -20,7 +20,7 @@ echo
rsync -rpcv --chmod=D755,F644 --delete static_tmp/ $remote:$target rsync -rpcv --chmod=D755,F644 --delete static_tmp/ $remote:$target
ssh $remote sync -f $target ssh $remote sync -f $target
ssh $remote ln -snf $target html ssh $remote ln -snf $target /var/www/html
ssh $remote sync . ssh $remote sync .
echo echo