We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents efab456 + 5e2b43c commit 6a45dc9Copy full SHA for 6a45dc9
1 file changed
server/scripts/update_runner.sh
@@ -51,10 +51,12 @@ then
51
exit 1
52
}
53
54
- wget -O ISPConfig-3.tar.gz "${URL}"
+ echo "Downloading ISPConfig update."
55
+ wget -q -O ISPConfig-3.tar.gz "${URL}"
56
if [ -f ISPConfig-3.tar.gz ]
57
then
- tar xvzf ISPConfig-3.tar.gz --strip-components=1
58
+ echo "Unpacking ISPConfig update."
59
+ tar xzf ISPConfig-3.tar.gz --strip-components=1
60
cd install/
61
php -q \
62
-d disable_classes= \
0 commit comments