function hostingService_http_apache::default_restart_cmd in Hosting 6.2
Same name and namespace in other branches
- 7.4 web_server/hosting_web_server.service.inc \hostingService_http_apache::default_restart_cmd()
- 7.3 web_server/hosting_web_server.service.inc \hostingService_http_apache::default_restart_cmd()
Overrides hostingService::default_restart_cmd
File
- web_server/
hosting_web_server.service.inc, line 29
Class
Code
function default_restart_cmd() {
$command = '/usr/sbin/apache2ctl';
# a proper default for most of the world
foreach (explode(':', $_SERVER['PATH']) as $path) {
$options[] = "{$path}/apache2ctl";
$options[] = "{$path}/apachectl";
}
# try to detect the apache restart command
$options[] = '/usr/local/sbin/apachectl';
# freebsd
$options[] = '/usr/sbin/apache2ctl';
# debian + apache2
$options[] = $command;
foreach ($options as $test) {
if (is_executable($test)) {
$command = $test;
break;
}
}
return "sudo {$command} graceful";
}