Skip to content
Snippets Groups Projects
Commit 6a45dc9e authored by Marius Burkard's avatar Marius Burkard
Browse files

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
parents efab4564 5e2b43c8
No related branches found
No related tags found
No related merge requests found
......@@ -51,10 +51,12 @@ then
exit 1
}
wget -O ISPConfig-3.tar.gz "${URL}"
echo "Downloading ISPConfig update."
wget -q -O ISPConfig-3.tar.gz "${URL}"
if [ -f ISPConfig-3.tar.gz ]
then
tar xvzf ISPConfig-3.tar.gz --strip-components=1
echo "Unpacking ISPConfig update."
tar xzf ISPConfig-3.tar.gz --strip-components=1
cd install/
php -q \
-d disable_classes= \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment