6 lines
109 B
Bash
Executable File
6 lines
109 B
Bash
Executable File
#! /bin/sh
|
|
retStr=`/usr/lib/nagios/plugins/check_procs -a jvb`
|
|
retCode=${?}
|
|
echo "${retStr}"
|
|
exit ${retCode}
|