osbuild2: expose new gpgkeys.fromtree osbuild option

The `org.osbuild.rpm` stage gained a new option `gpgkeys.fromtree`
which is a list of paths with files containing gpgkeys that will
be imported after the package installation phase is done.
This commit is contained in:
Christian Kellner 2022-03-03 23:12:56 +01:00 committed by Ondřej Budai
parent 4b53312b7c
commit 92d32e697d

View file

@ -8,6 +8,9 @@ type RPMStageOptions struct {
// Array of GPG key contents to import
GPGKeys []string `json:"gpgkeys,omitempty"`
// Array of files in the tree containing GPG keys to import
GPGKeysFromTree []string `json:"gpgkeys.fromtree,omitempty"`
// Prevent dracut from running
DisableDracut bool `json:"disable_dracut,omitempty"`