You are here

function hostingService_http_https_apache::default_restart_cmd in Aegir HTTPS 7.3

File

submodules/apache_https/hosting_apache_https.service.inc, line 15
Define a Hosting service class for Apache w/HTTPS.

Class

hostingService_http_https_apache

Code

function default_restart_cmd() {
  $command = '/usr/sbin/apachectl';

  # 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";
}