aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordariomas <dariomas@users.noreply.github.com>2015-02-18 16:33:19 +0100
committerdariomas <dariomas@users.noreply.github.com>2015-02-18 16:33:19 +0100
commit266662ff8334da5210ad64f08b050b1167386268 (patch)
treed85e25314dbfb6e19704fd0b7ef2273618673a9e
parent59462aa2994cb7d43134ba96e07b5d2b42dfaebc (diff)
downloadpfsense-packages-266662ff8334da5210ad64f08b050b1167386268.tar.gz
pfsense-packages-266662ff8334da5210ad64f08b050b1167386268.tar.bz2
pfsense-packages-266662ff8334da5210ad64f08b050b1167386268.zip
vhost: Added ['custom_php_service_status_command']
-rw-r--r--config/vhosts/vhosts.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/vhosts/vhosts.inc b/config/vhosts/vhosts.inc
index 2437c970..1958632e 100644
--- a/config/vhosts/vhosts.inc
+++ b/config/vhosts/vhosts.inc
@@ -681,11 +681,11 @@ function vhosts_sync_package_php()
);
//add or update a service
- $a_service = &$config['installedpackages']['service'];
$ent['name'] = "vhosts-ssl-$x";
$ent['rcfile'] = "vhosts-".$ipaddress."-".$port."-ssl.sh";
$ent['executable'] = "vhosts-".$ipaddress."-".$port."-ssl";
$ent['description'] = "vHosts SSL, Host: $host, IP Address: ".$ipaddress.", port: ".$port." desc: ".$description;
+ $ent['custom_php_service_status_command'] = "\$vhost_output=''; exec('/bin/pgrep -anf '.".escapeshellarg($ent['executable']).", \$vhost_output, \$retval); \$rc=(intval(\$retval) == 0);";
$a_service = $config['installedpackages']['service'];
$service_id = get_service_id ($a_service, 'name', "vhosts-ssl-$x");
if (is_int($service_id)) {