check_reversetunnel added

This commit is contained in:
Dirk Alders 2024-07-20 18:27:52 +02:00
parent 5a9b7a1847
commit 7ed140c151

18
check_reversetunnel Executable file
View File

@ -0,0 +1,18 @@
#!/bin/sh
#
AUTOSSH_PIDs=$(pidof autossh)
if [ -z $AUTOSSH_PIDs ]; then
# no autossh process running
echo "No autossh process is running!"
exit 2
else
# there is an autossh process
ps x -q $AUTOSSH_PIDs | grep "\-R 10022:localhost:22.*mount-mockery.de$" 2>&1 > /dev/null
if [ $? -eq 0 ]; then
echo "The required autossh process is running"
exit 0
else
echo "There are autossh processes, but none of them fit to the required connection details"
exit 2
fi
fi