Source code of filesite.io. https://filesite.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
663 B

#!/bin/sh
echo "Upgrade machete ..."
echo ""
mkdir -p /var/www/downloads
cd /var/www/downloads/
rm -f master.tar.gz
rm -rf machete/
wget "https://git.filesite.io/filesite/machete/archive/master.tar.gz"
tar -zxvf master.tar.gz
rsync -vruL machete/* /var/www/machete/ \
--exclude=www/content/ \
--exclude=www/navs/ \
--exclude=www/girls/ \
--exclude=www/videos/ \
--exclude=runtime/
cd /var/www/machete/ \
&& chown apache:apache runtime/ \
&& chown -R apache:apache www/content/ \
&& chown apache:apache www/navs/ \
&& chown apache:apache www/girls/ \
&& chown apache:apache www/videos/
echo "Machete upgrade done."
echo ""