From 67bee6d620de512e3a6b61d9554d85019f0001df Mon Sep 17 00:00:00 2001 From: Robin Kluth Date: Fri, 23 May 2014 23:06:40 +0200 Subject: [PATCH] Added restart hint after PHP-FPM configuration --- lib/configfiles/wheezy.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/configfiles/wheezy.inc.php b/lib/configfiles/wheezy.inc.php index 82be83c0..f7f24d64 100644 --- a/lib/configfiles/wheezy.inc.php +++ b/lib/configfiles/wheezy.inc.php @@ -441,6 +441,9 @@ return array( (Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'useradd -s /bin/false -g '.Settings::Get('phpfpm.vhost_httpgroup').' '.Settings::Get('phpfpm.vhost_httpuser') : null, (Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'chown -R '.Settings::Get('phpfpm.vhost_httpuser').':'.Settings::Get('phpfpm.vhost_httpgroup').' '.FROXLOR_INSTALL_DIR : null, (Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'a2dismod php5' : null + ), + 'restart' => array( + '/etc/init.d/apache2 restart' ) ) )