use reload-commands from settings also for wheezy :)

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2014-05-24 09:13:33 +02:00
parent 4167451da6
commit e8e2731c6f

View File

@@ -369,7 +369,7 @@ return array(
'etc_cron.d_froxlor' => '/etc/cron.d/froxlor' 'etc_cron.d_froxlor' => '/etc/cron.d/froxlor'
), ),
'restart' => array( 'restart' => array(
'/etc/init.d/cron restart' Settings::Get('system.crondreload')
) )
), ),
'awstats' => array( 'awstats' => array(
@@ -426,7 +426,7 @@ return array(
(Settings::Get('system.mod_fcgid_ownvhost') == '1') ? 'a2dismod php5' : null (Settings::Get('system.mod_fcgid_ownvhost') == '1') ? 'a2dismod php5' : null
), ),
'restart' => array( 'restart' => array(
'/etc/init.d/apache2 restart' Settings::Get('system.apachereload_command')
) )
), ),
'php-fpm' => array( 'php-fpm' => array(
@@ -443,7 +443,7 @@ return array(
(Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'a2dismod php5' : null (Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'a2dismod php5' : null
), ),
'restart' => array( 'restart' => array(
'/etc/init.d/apache2 restart' Settings::Get('system.apachereload_command')
) )
) )
) )