Skip to content

Commit 6a45dc9

Browse files
author
Marius Burkard
committed
Merge branch '6120-run-wget-and-tar-quietly-on-update' into 'develop'
Resolve "Run wget and tar quietly on update" Closes #6120 See merge request ispconfig/ispconfig3!1465
2 parents efab456 + 5e2b43c commit 6a45dc9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

server/scripts/update_runner.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,12 @@ then
5151
exit 1
5252
}
5353

54-
wget -O ISPConfig-3.tar.gz "${URL}"
54+
echo "Downloading ISPConfig update."
55+
wget -q -O ISPConfig-3.tar.gz "${URL}"
5556
if [ -f ISPConfig-3.tar.gz ]
5657
then
57-
tar xvzf ISPConfig-3.tar.gz --strip-components=1
58+
echo "Unpacking ISPConfig update."
59+
tar xzf ISPConfig-3.tar.gz --strip-components=1
5860
cd install/
5961
php -q \
6062
-d disable_classes= \

0 commit comments

Comments
 (0)