diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2005-09-20 11:34:34 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2005-09-20 11:34:34 +0000 |
commit | 571e8e5af47c727189798c43095fd903331bc639 (patch) | |
tree | 2c5e8b40b42529d090b11f0cd3d3f624ecca7dd6 /configure.in | |
parent | 44248b8b2b5b5ae1f7a7e46f382ede00b3e18882 (diff) | |
download | monitoring-plugins-571e8e5af47c727189798c43095fd903331bc639.tar.gz |
Support for Tru64 for check_procs + additional test cases
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1231 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 76ad0130..6b812c6f 100644 --- a/configure.in +++ b/configure.in | |||
@@ -698,14 +698,17 @@ then | |||
698 | ac_cv_ps_cols=9 | 698 | ac_cv_ps_cols=9 |
699 | AC_MSG_RESULT([$ac_cv_ps_command]) | 699 | AC_MSG_RESULT([$ac_cv_ps_command]) |
700 | 700 | ||
701 | dnl Tru64 - needs %*[ +] in PS_FORMAT | 701 | dnl Tru64 - needs %*[ +<>] in PS_FORMAT. |
702 | elif ps -ao 'stat comm vsz rss user uid pid ppid args' 2>/dev/null | \ | 702 | dnl Has /usr/bin/ps and /sbin/ps - force sbin version |
703 | egrep -i ["^ *S[TAUES]* +[UCOMDNA]+ +[VSIZE]+ +R[S]+ +U[SER]+ +U[ID]+ +P[ID]+ +P[PID]+ +[RGSCOMDNA]+"] >/dev/null | 703 | dnl Can't use vsize and rssize because comes back with text (eg, 1.5M instead |
704 | then | 704 | dnl of 1500). Will need big changes to check_procs to support |
705 | ac_cv_ps_varlist="[procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]" | 705 | elif /sbin/ps -eo 'stat uid pid ppid pcpu etime comm args' 2>/dev/null | \ |
706 | ac_cv_ps_command="$PATH_TO_PS -ao 'stat uid pid ppid vsz rss pcpu comm args'" | 706 | egrep -i ["^ *S +[UID]+ +[PID]+ +[PID]+ +[%CPU]+ +[ELAPSD]+ +[COMMAND]+ +[COMMAND]+"] > /dev/null |
707 | ac_cv_ps_format=["%s%*[ +] %d %d %d %d %d %f %s %n"] | 707 | then |
708 | ac_cv_ps_cols=9 | 708 | ac_cv_ps_varlist="[procstat,&procuid,&procpid,&procppid,&procpcpu,procetime,procprog,&pos]" |
709 | ac_cv_ps_command="/sbin/ps -eo 'stat uid pid ppid pcpu etime comm args'" | ||
710 | ac_cv_ps_format=["%s%*[ +<>] %d %d %d %f %s %s %n"] | ||
711 | ac_cv_ps_cols=8 | ||
709 | AC_MSG_RESULT([$ac_cv_ps_command]) | 712 | AC_MSG_RESULT([$ac_cv_ps_command]) |
710 | 713 | ||
711 | elif ps -eo 's comm vsz rss user uid pid ppid args' 2>/dev/null | \ | 714 | elif ps -eo 's comm vsz rss user uid pid ppid args' 2>/dev/null | \ |