Commit a2b61978 authored by tbrehm's avatar tbrehm
Browse files

Removed ISPConfig update function from interface. Use ispconfig_update.sh on the shell instead.

parent b6d93d28
......@@ -31,6 +31,8 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ISPConfig 3 updater.
*/
die("Autoupdate has been removed.\nPlease start the update on the shell with the command ispconfig_update.sh as root user.\n");
error_reporting(E_ALL|E_STRICT);
/*
......
......@@ -193,11 +193,13 @@ $items[] = array( 'title' => 'Do OS-Update',
'target' => 'content',
'link' => 'admin/remote_action_osupdate.php',
'html_id'=> 'osupdate');
/*
// ISPConfig interface update has been removed. Please use ispconfig_update.sh on the shell instead.
$items[] = array( 'title' => 'Do ISPConfig-Update',
'target' => 'content',
'link' => 'admin/remote_action_ispcupdate.php',
'html_id'=> 'ispcupdate');
*/
$module['nav'][] = array( 'title' => 'Remote Actions',
'open' => 1,
......
......@@ -27,6 +27,8 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
die('Function has been removed.');
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
......
......@@ -119,12 +119,14 @@ class remoteaction_core_module {
* we stop executing the actions not to waste more time */
return;
}
if ($action['action_type'] == 'ispc_update') {
/* do the update */
$this->_doIspCUpdate($action);
// Update function has been removed
// $this->_doIspCUpdate($action);
/* this action takes so much time,
* we stop executing the actions not to waste more time */
return;
$this->_actionDone($action['action_id'], 'ok');
}
if ($action['action_type'] == 'openvz_start_vm') {
$veid = intval($action['action_param']);
......
......@@ -4,23 +4,5 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
. /etc/profile
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
#
cd /usr/local/ispconfig/server
/usr/bin/php -q /usr/local/ispconfig/server/server.php
fi
\ No newline at end of file
cd /usr/local/ispconfig/server
/usr/bin/php -q /usr/local/ispconfig/server/server.php
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment