sparkles: Boot options (#91)

*  Add grub_options to config

Split post-install into hooks

* 🤖 Adapt test to latest releases
This commit is contained in:
Ettore Di Giacinto 2022-09-08 15:39:26 +02:00 committed by Itxaka
parent 8518a3752e
commit bb73b8164c

View File

@ -18,10 +18,11 @@ import (
) )
type Install struct { type Install struct {
Auto bool `yaml:"auto,omitempty"` Auto bool `yaml:"auto,omitempty"`
Reboot bool `yaml:"reboot,omitempty"` Reboot bool `yaml:"reboot,omitempty"`
Device string `yaml:"device,omitempty"` Device string `yaml:"device,omitempty"`
Poweroff bool `yaml:"poweroff,omitempty"` Poweroff bool `yaml:"poweroff,omitempty"`
GrubOptions map[string]string `yaml:"grub_options,omitempty"`
} }
type Config struct { type Config struct {