docs: Update documentation on signing netboot artifacts.

The previous instructions did not properly expand the the artifacts, leading to no new or bad signatures, as gpg does not accept multiple files to sign that way.
This commit is contained in:
David Runge 2023-08-28 12:41:05 +02:00 committed by Jelle van der Waa
parent d1f2055aca
commit 3a8ad53a22

View File

@ -155,7 +155,9 @@ key](https://gitlab.archlinux.org/archlinux/archlinux-keyring/-/wikis/home) is
created for each file:
```
gpg --sender "User Name <your@mail.address>" --detach-sign sitestatic/netboot/*.{efi,ipxe,lkrn}
for artifact in sitestatic/netboot/*.{efi,pxe,lkrn}; do
gpg --sender "User Name <your@mail.address>" --detach-sign "$artifact"
done
```
# Production Installation