From 230dd25be6a2c3412c514000fc19b64ae7ee88ef Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sat, 20 Jul 2024 19:07:03 +0200 Subject: [PATCH] BugFix - check_reversetunnel --- check_reversetunnel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_reversetunnel b/check_reversetunnel index 7ce7b0a..8123394 100755 --- a/check_reversetunnel +++ b/check_reversetunnel @@ -12,7 +12,7 @@ if [ -z $AUTOSSH_PIDs ]; then exit $NAGIOS_ERROR else # there is an autossh process - ps x -q $AUTOSSH_PIDs | grep $MULTIMEDIA_TUNNEL_REGEX 2>&1 > /dev/null + ps x -q $AUTOSSH_PIDs | grep "$MULTIMEDIA_TUNNEL_REGEX" 2>&1 > /dev/null if [ $? -eq 0 ]; then echo "OK - The required autossh process is running" exit $NAGIOS_OK