Carsten Schoene
2015-01-27 4845fa0710d5ee6f83923f3e6a54616af8a287cc
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
 
cd /tmp
wget -O ispconfig3-dev.tar.gz "http://git.ispconfig.org/ispconfig/ispconfig3/repository/archive.tar.gz?ref=master"
tar xzf ispconfig3-dev.tar.gz
cd ispconfig3.git/install
php -q update.php
cd /tmp
rm -rf /tmp/ispconfig3.git /tmp/ispconfig3-dev.tar.gz
 
exit 0