Not correctly working out ps command if /usr/ucb before /usr/bin in PATH for

Solaris (reported by Ben Whaley)


git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@786 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Ton Voon 2003-12-05 18:08:16 +00:00
parent e8bcaefa0a
commit 0644f5a497

View file

@ -675,7 +675,8 @@ then
dnl SunOS 4.1.3:
dnl F UID PID PPID CP PRI NI SZ RSS WCHAN STAT TT TIME COMMAND
elif ps -laxnwww 2>/dev/null | \
dnl Need the head -1 otherwise test will work because arguments are found
elif ps -laxnwww 2>/dev/null | head -1 | \
egrep -i ["^ *F(LAGS)? +UID +PID +PPID +CP +PRI +NI +(SZ)|(VSZ)|(SIZE) +RSS +WCHAN +STAT? +TTY? +TIME +COMMAND"] >/dev/null
then
ac_cv_ps_varlist="[&procuid,&procppid,&procvsz,&procrss,procstat,&pos,procprog]"
@ -843,7 +844,7 @@ else
AC_MSG_WARN([unable to find usable ps syntax - check_procs and check_nagios will not be compiled])
fi
if test -n $ac_cv_ps_varlist ; then
if test -n "$ac_cv_ps_varlist" ; then
AC_DEFINE_UNQUOTED(PS_VARLIST,$ac_cv_ps_varlist,
[Variable list for sscanf of 'ps' output])
AC_DEFINE_UNQUOTED(PS_COMMAND,"$ac_cv_ps_command",