summaryrefslogtreecommitdiffstats
path: root/frontends/php/report1.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-01-20 12:57:53 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-01-20 12:57:53 +0000
commit08f322dd7d0c82833497e008d11f628cdb805fa7 (patch)
tree3fa07d850d3042611c07e787b59b928b5cc7debc /frontends/php/report1.php
parent076243147bb4679272c56ca7905c310118b8f653 (diff)
downloadzabbix-08f322dd7d0c82833497e008d11f628cdb805fa7.tar.gz
zabbix-08f322dd7d0c82833497e008d11f628cdb805fa7.tar.xz
zabbix-08f322dd7d0c82833497e008d11f628cdb805fa7.zip
Minor change.
git-svn-id: svn://svn.zabbix.com/trunk@653 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/report1.php')
-rw-r--r--frontends/php/report1.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/report1.php b/frontends/php/report1.php
index 9bb3d169..9184a1e8 100644
--- a/frontends/php/report1.php
+++ b/frontends/php/report1.php
@@ -20,7 +20,7 @@
<td>Is zabbix_suckerd running ?</td>
<?php
$str="No";
- if(exec("ps aux|grep zabbix_suckerd|wc -l")>0)
+ if(exec("ps axw|grep zabbix_suckerd|wc -l")>0)
{
$str="Yes";
}
@@ -32,7 +32,7 @@
<td>Is zabbix_trapperd running ?</td>
<?php
$str="No";
- if(exec("ps aux|grep zabbix_trapperd|wc -l")>0)
+ if(exec("ps axw|grep zabbix_trapperd|wc -l")>0)
{
$str="Yes";
}