diff --git a/xymon/xymon.alert.sh b/xymon/xymon.alert.sh index f9f2dab..1773a17 100755 --- a/xymon/xymon.alert.sh +++ b/xymon/xymon.alert.sh @@ -14,6 +14,7 @@ DEBUG=1 script_path="$(dirname -- ${0})" +script_apt="${script_path}/xymon.apt.alert.sh" script_libs="${script_path}/xymon.libs.alert.sh" script_procs="${script_path}/xymon.procs.alert.sh" # }}} @@ -22,6 +23,9 @@ script_procs="${script_path}/xymon.procs.alert.sh" # Match probe name with the script {{{ case "${BBSVCNAME}" in + 'apt' ) + script_to_run="${script_apt}" + ;; 'libs' ) script_to_run="${script_libs}" ;;