letsencrypt: depend on bind9-dnsutils (dnsutils is a trixie transitional)

On Debian 13 trixie `dnsutils` is a transitional package replaced by
`bind9-dnsutils`. Apt installs bind9-dnsutils when you ask for dnsutils,
but `dpkg -s dnsutils` returns 1 because no real package by that name
exists — bw's pkg_apt status check then flags the item as failed every
apply. Switching the dependency to the real package name resolves the
loop.

The bundle just needs `nsupdate` (provided by bind9-dnsutils) for the
DNS-01 challenge hook.
This commit is contained in:
CroneKorkN 2026-05-10 21:03:16 +02:00
parent b5662f7ea7
commit 7265c4aab1
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -2,7 +2,7 @@ defaults = {
'apt': { 'apt': {
'packages': { 'packages': {
'dehydrated': {}, 'dehydrated': {},
'dnsutils': {}, 'bind9-dnsutils': {},
}, },
}, },
'letsencrypt': { 'letsencrypt': {