2021-12-16 11:21:45 +00:00
|
|
|
cd /var/www/html
|
|
|
|
git clone $GITURL sui
|
2021-12-16 15:09:25 +00:00
|
|
|
shopt -s dotglob
|
2021-12-16 11:21:45 +00:00
|
|
|
mv sui/* .
|
|
|
|
rm -rf sui
|
|
|
|
echo "pulled update"
|
|
|
|
|
|
|
|
# Copy hello-cron file to the cron.d directory
|
|
|
|
cp sui-cron /etc/cron.d/sui-cron
|
|
|
|
|
|
|
|
# Give execution rights on the cron job
|
|
|
|
chmod 0644 /etc/cron.d/sui-cron
|
|
|
|
|
|
|
|
# set pull script permissions
|
|
|
|
chmod +x gitpull.sh
|
|
|
|
|
|
|
|
# Apply cron job
|
|
|
|
crontab /etc/cron.d/sui-cron
|
|
|
|
|
|
|
|
# Create the log file to be able to run tail
|
|
|
|
touch /var/log/cron.log
|
|
|
|
|
|
|
|
# configure nginx
|
|
|
|
echo "daemon off;" >> /etc/nginx/nginx.conf
|