From 233a4736f14d8c5bd839bf132ad952fd5dc617cc Mon Sep 17 00:00:00 2001 From: erebion Date: Wed, 10 Apr 2024 11:59:00 +0200 Subject: [PATCH] fix watchtower config which apparently broke due to an update --- .../templates/watchtower.env.j2 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/roles/watchtower_docker/templates/watchtower.env.j2 b/roles/watchtower_docker/templates/watchtower.env.j2 index 613f28a..a42249d 100644 --- a/roles/watchtower_docker/templates/watchtower.env.j2 +++ b/roles/watchtower_docker/templates/watchtower.env.j2 @@ -1,9 +1,9 @@ WATCHTOWER_POLL_INTERVAL={{ watchtower_poll_interval }} -WATCHTOWER_NOTIFICATIONS="{{ watchtower_notifications }}" -WATCHTOWER_NOTIFICATION_EMAIL_FROM="{{ watchtower_notification_email_from }}" -WATCHTOWER_NOTIFICATION_EMAIL_TO="{{ watchtower_notification_email_to }}" -WATCHTOWER_NOTIFICATION_EMAIL_SERVER="{{ watchtower_notification_email_server }}" -WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT="{{ watchtower_notification_email_server_port }}" -WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER="{{ watchtower_notification_email_server_user }}" -WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD="{{ watchtower_notification_email_server_password }}" -WATCHTOWER_WARN_ON_HEAD_FAILURE="{{ watchtower_warn_on_head_failure }}" +WATCHTOWER_NOTIFICATIONS={{ watchtower_notifications }} +WATCHTOWER_NOTIFICATION_EMAIL_FROM={{ watchtower_notification_email_from }} +WATCHTOWER_NOTIFICATION_EMAIL_TO={{ watchtower_notification_email_to }} +WATCHTOWER_NOTIFICATION_EMAIL_SERVER={{ watchtower_notification_email_server }} +WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT={{ watchtower_notification_email_server_port }} +WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER={{ watchtower_notification_email_server_user }} +WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD={{ watchtower_notification_email_server_password }} +WATCHTOWER_WARN_ON_HEAD_FAILURE={{ watchtower_warn_on_head_failure }}