Skip to content
update_from_tgz.sh 420 B
Newer Older
tbrehm's avatar
tbrehm committed
#!/bin/bash

cd /tmp

if [ -f ISPConfig-3-stable.tar.gz ]
then
rm -f ISPConfig-3-stable.tar.gz
fi

tbrehm's avatar
tbrehm committed
wget http://www.ispconfig.org/downloads/ISPConfig-3-stable.tar.gz
tbrehm's avatar
tbrehm committed
if [ -f ISPConfig-3-stable.tar.gz ]
then
	tar xvfz ISPConfig-3-stable.tar.gz
	cd ispconfig3_install/install/
	php -q update.php
	rm -rf /tmp/ispconfig3_install/install
	rm -f ISPConfig-3-stable.tar.gz
else
	echo "Unable to download the update."
fi

exit 0