yavsc/Yavsc/contrib/rsync-to-prod.sh

19 lines
341 B
Bash

9 years ago
#!/bin/bash
9 years ago
export FSPATH=/srv/www/yavsc
9 years ago
(
set -e
9 years ago
ssh root@localhost systemctl stop kestrel
ssh root@localhost rm -rf $FSPATH/approot
cd bin/output/
9 years ago
sleep 1
9 years ago
echo "Sync: > $FSPATH"
rsync -ravu wwwroot approot root@localhost:$FSPATH
9 years ago
sleep 1
9 years ago
ssh root@localhost sync
9 years ago
sleep 1
9 years ago
ssh root@localhost systemctl start kestrel
9 years ago
)