apl: make keyring generation output keys as binary again

sequioa dropped the `--binary` flag for keyring generation and only
outputs ascii armored keyrings. so make it dearmor the key afterward
to keep the key format consistent with the file ending (".gpg") again.

Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
Link: https://lore.proxmox.com/20250722123658.196232-2-s.sterz@proxmox.com
This commit is contained in:
Shannon Sterz 2025-07-22 14:36:58 +02:00 committed by Thomas Lamprecht
parent 15a67b13e7
commit 5034a93f6d

View file

@ -20,7 +20,9 @@ update:
mv aplinfo.dat.tmp aplinfo.dat
trustedkeys.gpg: $(TRUSTED_KEYS)
sq keyring merge --output $@.tmp $(TRUSTED_KEYS)
sq keyring merge --output $(basename $@).asc.tmp $(TRUSTED_KEYS)
sq packet dearmor $(basename $@).asc.tmp --output $@.tmp
rm $(basename $@).asc.tmp
mv $@.tmp $@
.PHONY: clean