Added basic monitoring
This commit is contained in:
parent
ddbe0ba4ee
commit
4f769e8f4c
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
export SITE=$1
|
||||||
|
|
||||||
|
timeout 2 bash -c "</dev/tcp/${SITE}/143" > /dev/null
|
||||||
|
if [ $? -ne "0" ]
|
||||||
|
then
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
export SITE=$1
|
||||||
|
|
||||||
|
timeout 2 bash -c "</dev/tcp/${SITE}/25" > /dev/null
|
||||||
|
if [ $? -ne "0" ]
|
||||||
|
then
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
|
@ -1,2 +1,3 @@
|
||||||
sshd
|
sshd
|
||||||
BZFlag_server
|
BZFlag_Server
|
||||||
|
Memory
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
web_site
|
web_site
|
||||||
web_site_https
|
web_site_https
|
||||||
|
imap
|
||||||
|
smtp
|
||||||
|
|
Loading…
Reference in New Issue