openlut/doc/upload.sh

23 lines
427 B
Bash
Raw Normal View History

2017-01-26 05:13:57 +01:00
#!/bin/bash
REMOTE=sofus@wakingnexus
2017-01-26 23:07:35 +01:00
#Remove the old docs.
ssh $REMOTE 'bash -s' << 'ENDSSH'
rm -rf /var/www/openlut/*
ENDSSH
#Sync over the new docs.
rsync -avzP build/html/* $REMOTE:/var/www/openlut/
#Set strong permissions.
ssh $REMOTE 'bash -s' << 'ENDSSH'
chown -R sofus:www-data /var/www/openlut/*
find /var/www/openlut -type f -exec chmod 0640 {} \;
find /var/www/openlut -type d -exec chmod 2750 {} \;
ENDSSH