diff options
author | thompsa <andy@fud.org.nz> | 2010-03-12 13:28:14 +1300 |
---|---|---|
committer | thompsa <andy@fud.org.nz> | 2010-03-12 13:28:14 +1300 |
commit | 6661ea2525eb3d43069ad01616f1f905be94029c (patch) | |
tree | 6204f74e3b753f7855757b955a8c361898116288 /etc/inc/util.inc | |
parent | cae1b7db89f7cc46fb611701e8d261054903a3ad (diff) | |
download | pfsense-6661ea2525eb3d43069ad01616f1f905be94029c.zip pfsense-6661ea2525eb3d43069ad01616f1f905be94029c.tar.gz |
Use procatat instead of ps as the latter always prints a header, also
use full paths.
Diffstat (limited to 'etc/inc/util.inc')
-rw-r--r-- | etc/inc/util.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc index 686810f..76dba77 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -50,7 +50,7 @@ function isvalidpid($pid) { } function is_process_running($process) { - $running = (shell_exec("pgrep -x {$process}") != ''); + $running = (shell_exec("/bin/pgrep -x {$process}") != ''); return $running; } |