瀏覽代碼

check_oracle: make sure pgrep is getting the count

madlohe 6 年之前
父節點
當前提交
48221594c1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins-scripts/check_oracle.sh

+ 1 - 1
plugins-scripts/check_oracle.sh

@@ -166,7 +166,7 @@ case "$cmd" in
     }'
     ;;
 --db)
-    pmonchk=$(pgrep -f "(asm|ora|xe)_pmon_${2}$")
+    pmonchk=$(pgrep -f -c "(asm|ora|xe)_pmon_${2}$")
     if [ "${pmonchk}" -ge 1 ] ; then
         echo "${2} OK - ${pmonchk} PMON process(es) running"
         exit "$STATE_OK"