monit: add option to add checks for various services

This commit is contained in:
Rico 2022-01-04 11:26:39 +01:00
parent e4fa31464e
commit 84df834f07
Signed by: stillbeben
GPG Key ID: AE1066B5BD0B5041
1 changed files with 7 additions and 0 deletions

View File

@ -43,3 +43,10 @@ check process postfix matching "/usr/lib/postfix/sbin/master"
start program = "/bin/systemctl start postfix.service"
stop program = "/bin/systemctl stop postfix.service"
if failed port 25 protocol smtp for 5 cycles then restart
% for service,options in monit.get('services', {}).items():
check process ${service} matching "${options['bin']}"
start program = "/bin/systemctl start ${options.get('systemd_unit', 'service')}.service"
stop program = "/bin/systemctl stop ${options.get('systemd_unit', 'service')}.service"
% endfor