From 012386950fc18583ac3dbea03cca19ef2db46e18 Mon Sep 17 00:00:00 2001 From: vogelor <vogelor@ispconfig3> Date: Tue, 29 Mar 2011 15:45:58 -0400 Subject: [PATCH] Fixed some autoupdate-problems --- server/server.sh | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/server/server.sh b/server/server.sh index df844bc..7302ca4 100644 --- a/server/server.sh +++ b/server/server.sh @@ -4,4 +4,22 @@ . /etc/profile -/usr/bin/php -q /usr/local/ispconfig/server/server.php +if [ -f /tmp/ispconfig3_install/install/autoupdate ]; then + # + # there is a auto-update waiting for update, so let's do it + # + cd /tmp/ispconfig3_install/install + /usr/bin/php -q autoupdate.php + cd / + + # + # do some clean-up + # + rm /tmp/ispconfig3_install -R + +else + # + # there is no update waiting, so lets start the ISPConfig-System + # + /usr/bin/php -q /usr/local/ispconfig/server/server.php +fi \ No newline at end of file -- Gitblit v1.9.1