Skip to content

Commit

Permalink
docs: Update documentation on signing netboot artifacts.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dvzrv committed Aug 28, 2023
1 parent c57741d commit 5e1b406
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ key](https://gitlab.archlinux.org/archlinux/archlinux-keyring/-/wikis/home) is
created for each file:

```
gpg --sender "User Name <[email protected]>" --detach-sign sitestatic/netboot/*.{efi,ipxe,lkrn}
for artifact in sitestatic/netboot/*.{efi,pxe,lkrn}; do
gpg --sender "User Name <[email protected]>" --detach-sign "$artifact"
done
```

# Production Installation
Expand Down

0 comments on commit 5e1b406

Please sign in to comment.