pdns
pdns copied to clipboard
Apt 'pins' (preferences.d) on repo.powerdns.com incorrect
- [x] This is not a support question, I have read about opensource and will send support questions to the IRC channel, Github Discussions or the mailing list.
- [x] I have read and understood the 'out in the open' support policy
On https://repo.powerdns.com/ the apt pinning instructions use incorrect package names for pdns-server and pdns-recursor:
Package: auth*
Package: rec*
This means the pinning is not applied. Not a real problem, since Ubuntu ships way older stuff anyways, but it could be so i thought i'd report it.
Also, while not incorrect install -d
to create '/etc/apt/keyrings' is kinda weird compared to mkdir
.
I had to read it twice, but sure, install -d
also works. ;)
From IRC, thanks jssfr, re install
:
If the directory in question already exists:
install -d
will not try to set the ownership and file mode bits.
mkdir -p
will try to set the ownership and file mode bits.
Even more reason to use mkdir i'd say. ;)
It used to say to pin "pdns-*
".
I thought so, but it was hard to figure out from my git history, as the file is templated. Thanks :)
While I'm there, I should fix the includepkg/includepkgs mess in dnf/yum repo files.