From 8b5ccd302bd1497de721a25e4ce086bebf95173f Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Sun, 08 Jun 2008 15:32:42 -0400 Subject: [PATCH] Fixed a problem with the logout when the php session has ended. --- install/update.php | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/install/update.php b/install/update.php index b28d330..3095b04 100644 --- a/install/update.php +++ b/install/update.php @@ -129,12 +129,16 @@ } //** Shall the services be reconfigured during update -$reconfigure_services_answer = $inst->simple_query('Reconfigure Services?', 'yes,no','yes'); +$reconfigure_services_answer = $inst->simple_query('Reconfigure Services?', array('yes','no'),'yes'); if($reconfigure_services_answer == 'yes') { //** Configure postfix $inst->configure_postfix('dont-create-certs'); - + + //* Configure postfix + swriteln('Configuring Jailkit'); + $inst->configure_jailkit(); + //** Configure saslauthd swriteln('Configuring SASL'); $inst->configure_saslauthd(); @@ -174,10 +178,15 @@ //** Configure ISPConfig swriteln('Updating ISPConfig'); + + +//** Customise the port ISPConfig runs on +$inst->conf['apache']['vhost_port'] = $inst->free_query('ISPConfig Port', '8080'); + $inst->install_ispconfig(); //** Configure Crontab -$update_crontab_answer = $inst->simple_query('Reconfigure Services?', 'yes,no','yes'); +$update_crontab_answer = $inst->simple_query('Reconfigure Crontab?', array('yes','no'),'yes'); if($update_crontab_answer == 'yes') { swriteln('Updating Crontab'); $inst->install_crontab(); -- Gitblit v1.9.1