From 5079a31078383042073fd51fea0807a3d91ace7d Mon Sep 17 00:00:00 2001 From: Michael Hettwer Date: Mon, 16 Mar 2026 14:25:42 +0100 Subject: [PATCH] Add default false for certbot_freeipa in template --- templates/generate-cert.sh.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/generate-cert.sh.j2 b/templates/generate-cert.sh.j2 index a3f2b1e..98586bb 100644 --- a/templates/generate-cert.sh.j2 +++ b/templates/generate-cert.sh.j2 @@ -27,7 +27,7 @@ if [ ! -d "$CERT" ]; then {% else %} -{% if certbot_freeipa %} +{% if certbot_freeipa | default (false) %} systemctl stop httpd {% endif %} @@ -40,7 +40,7 @@ if [ ! -d "$CERT" ]; then {% endif %} -{% if certbot_freeipa %} +{% if certbot_freeipa | default (false) %} systemctl start httpd {% endif %} {% endif %}