Skip to content
Snippets Groups Projects
Commit 0d1c10dc authored by Nick Andriopoulos's avatar Nick Andriopoulos
Browse files

Comments out special handling for reloading PHP-FPM on CentOS7, refs #3739

parent e004715f
No related branches found
No related tags found
1 merge request!306Comments out special handling for reloading PHP-FPM on CentOS7, refs #3739
......@@ -269,13 +269,15 @@ class web_module {
$initcommand = '/sbin/start-stop-daemon --stop --signal USR2 --quiet --pidfile /var/run/php5-fpm.pid --name php5-fpm';
}
// And the next workaround, php-fpm reloads in centos 7 downt work as well.
/*
if(preg_match('/^ID=centos/m', $tmp) && preg_match('/^VERSION_ID="7"/m', $tmp)) {
$initcommand = 'systemctl restart php-fpm.service';
}
*/
unset($tmp);
}
}
/*
if($action == 'reload') {
// And the next workaround, php-fpm reloads in centos 7 downt work as well.
if(file_exists('/etc/os-release')) {
......@@ -287,6 +289,7 @@ class web_module {
unset($tmp);
}
}
*/
}
$retval = array('output' => '', 'retval' => 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment