Allow suppressing watchdog start notification.

The default behavior is still the old one (send a notifcation when the
watchdog is started), but this notification can now be suppressed by
setting WATCHDOG_NOTIFY_START=n.
This commit is contained in:
Sebastian Marsching
2023-10-12 12:46:02 +02:00
parent f1c93fa337
commit 5425cca47e
4 changed files with 12 additions and 1 deletions

View File

@@ -746,7 +746,7 @@ olefy_checks() {
}
# Notify about start
if [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]]; then
if [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && [[ ${WATCHDOG_NOTIFY_START} =~ ^([yY][eE][sS]|[yY])+$ ]]; then
mail_error "watchdog-mailcow" "Watchdog started monitoring mailcow."
fi