-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-scripts.sh
35 lines (35 loc) · 1.27 KB
/
update-scripts.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
#
# Update script for updating the checkout from github
#
# /volume1/applications/update-synology-scripts/update-scripts.sh && cp /volume1/applications/synology-scripts/update-scripts.sh /volume1/applications/update-synology-scripts
#
logger "Synology Scripts - Updating synology scripts from github"
logger "Synology Scripts - Go to upper directory and download latest master"
cd /volume1/applications
if [ -f "./master.zip" ]; then
rm ./master.zip
fi
wget https://github.com/geertbongers/synology-scripts/archive/master.zip
if [ -f "./master.zip" ]; then
logger "Synology Scripts - Unzipping master zip"
if [ -d "./synology-scripts-master" ]; then
rm -Rf ./synology-scripts-master
fi
unzip ./master.zip
if [ -d "./synology-scripts-master" ]; then
logger "Synology Scripts - Downloading master zip"
if [ -d "./synology-scripts" ]; then
rm -Rf ./synology-scripts
fi
mv ./synology-scripts-master ./synology-scripts
chmod +x ./*/*.sh
chmod +x ./*/*/*.sh
mkdir -p ./update-synology-scripts
else
logger -p local0.err "Synology Scripts - Unzipping failed download master.zip"
fi
rm ./master.zip
else
logger -p local0.err "Synology Scripts - Failed download master.zip"
fi