Add script to add monit jobs

This commit is contained in:
Nico Schottelius 2018-02-22 13:19:40 +01:00
parent d708970f9c
commit 1eb3a1c64b
1 changed files with 24 additions and 0 deletions

24
monit-ceph-create-start Executable file
View File

@ -0,0 +1,24 @@
#!/bin/sh
# Nico Schottelius, 2018-02-22
# Copyright ungleich glarus ag
if [ $# -ne 1 ]; then
echo "$0: to monitor"
echo "f.i. osd.17 or mon.server4"
exit 1
fi
to_monitor=$1
cat > "/etc/monit/conf-enabled/$to_monitor" <<EOF
# Auto generated by $0
check process $to_monitor with pidfile /var/run/ceph/${to_monitor}.pid
start program = "/etc/init.d/ceph start ${to_monitor}" with timeout 60 seconds
stop program = "/etc/init.d/ceph stop ${to_monitor}"
group server
EOF
monit reload
monit start "$to_monitor"