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

24 lines
440 B
Bash

8 years ago
#!/bin/bash
7 years ago
export FSPATH=/srv/www/yavscpre
8 years ago
ssh root@localhost rm -rf $FSPATH/approot
8 years ago
(
set -e
7 years ago
ssh root@localhost systemctl stop kestrel-pre
8 years ago
cd bin/output/
7 years ago
echo "sync to $FSPATH"
8 years ago
rsync -ravu wwwroot approot root@localhost:$FSPATH
sleep 1
7 years ago
ssh root@localhost sync
sleep 1
7 years ago
ssh root@localhost systemctl start kestrel-pre
8 years ago
)
8 years ago
echo "Now, go and try <https://yavscpre.pschneider.fr>"
echo "Then, feel free to launch contrib/rsync-to-prod.sh"
8 years ago
8 years ago