From: Shannon Sterz <s.sterz@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH manager 2/2] apl: make keyring generation output keys as binary again
Date: Tue, 22 Jul 2025 14:36:58 +0200 [thread overview]
Message-ID: <20250722123658.196232-2-s.sterz@proxmox.com> (raw)
In-Reply-To: <20250722123658.196232-1-s.sterz@proxmox.com>
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>
---
aplinfo/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/aplinfo/Makefile b/aplinfo/Makefile
index 1c6b61505..17d61ca74 100644
--- a/aplinfo/Makefile
+++ b/aplinfo/Makefile
@@ -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
--
2.47.2
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
next prev parent reply other threads:[~2025-07-22 12:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-22 12:36 [pve-devel] [PATCH manager 1/2] fix #6539: apl: use sqv instead of gpgv to verify signatures Shannon Sterz
2025-07-22 12:36 ` Shannon Sterz [this message]
2025-07-22 14:27 ` [pve-devel] applied: " Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250722123658.196232-2-s.sterz@proxmox.com \
--to=s.sterz@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.