From 5ef7d7ddb4ca88e85981e13fc222afc8d091cf2d Mon Sep 17 00:00:00 2001 From: Julian Rother Date: Tue, 17 Oct 2023 23:42:01 +0200 Subject: [PATCH] Bookworm compatibility New PowerDNS versions enable the newly introduced zone caching per default. With zone caching enabled, PowerDNS refuses to start if any configured backend does not support zone caching. This disables zone caching while maintaining compatability with Debian Bullseye. --- vars/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/vars/main.yml b/vars/main.yml index 8b213e8..14e2b58 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -5,3 +5,4 @@ powerdns: "pipe-letsencrypt-regex": "^_acme-challenge\\." "pipe-letsencrypt-command": "/usr/local/bin/pdns.py pdns_backend" "pipe-letsencrypt-abi-version": "1" + "zone-cache-refresh-interval": "{{ omit if ansible_distribution_release == 'bullseye' else '0' }}"