monurbox/checks/sshd

11 lines
114 B
Plaintext
Raw Permalink Normal View History

2019-01-31 01:18:23 +00:00
#!/bin/bash
export SITE=$1
2023-07-08 14:11:13 +00:00
./plugins/check_proc sshd > /dev/null
2019-01-31 01:18:23 +00:00
if [ $? -ne "0" ]
then
exit 1
else
exit 0
fi