mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-08-10 12:41:56 +00:00
66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
package hook
|
|
|
|
import (
|
|
"github.com/kairos-io/kairos-agent/v2/pkg/config"
|
|
cnst "github.com/kairos-io/kairos-agent/v2/pkg/constants"
|
|
v1 "github.com/kairos-io/kairos-agent/v2/pkg/types/v1"
|
|
"github.com/kairos-io/kairos-agent/v2/pkg/utils"
|
|
"github.com/kairos-io/kairos-sdk/machine"
|
|
"path/filepath"
|
|
)
|
|
|
|
// GrubPostInstallOptions is a hook that runs after the install process to add grub options.
|
|
type GrubPostInstallOptions struct{}
|
|
|
|
func (b GrubPostInstallOptions) Run(c config.Config, _ v1.Spec) error {
|
|
if len(c.Install.GrubOptions) == 0 {
|
|
return nil
|
|
}
|
|
c.Logger.Logger.Info().Msg("Running GrubOptions hook")
|
|
c.Logger.Debugf("Setting grub options: %s", c.Install.GrubOptions)
|
|
err := grubOptions(c, c.Install.GrubOptions)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.Logger.Logger.Info().Msg("Finish GrubOptions hook")
|
|
return nil
|
|
}
|
|
|
|
// GrubFirstBootOptions is a hook that runs on the first boot to add grub options.
|
|
type GrubFirstBootOptions struct{}
|
|
|
|
func (b GrubFirstBootOptions) Run(c config.Config, _ v1.Spec) error {
|
|
if len(c.GrubOptions) == 0 {
|
|
return nil
|
|
}
|
|
c.Logger.Logger.Info().Msg("Running GrubOptions hook")
|
|
c.Logger.Debugf("Setting grub options: %s", c.GrubOptions)
|
|
err := grubOptions(c, c.GrubOptions)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.Logger.Logger.Info().Msg("Finish GrubOptions hook")
|
|
return nil
|
|
}
|
|
|
|
// grubOptions sets the grub options in the grubenv file
|
|
// It mounts the OEM partition if not already mounted
|
|
// If its mounted but RO, it remounts it as RW
|
|
func grubOptions(c config.Config, opts map[string]string) error {
|
|
_ = machine.Umount(cnst.OEMDir)
|
|
_ = machine.Umount(cnst.OEMPath)
|
|
|
|
c.Logger.Logger.Debug().Msg("Mounting OEM partition")
|
|
_ = machine.Mount(cnst.OEMLabel, cnst.OEMPath)
|
|
defer func() {
|
|
c.Logger.Logger.Debug().Msg("Unmounting OEM partition")
|
|
_ = machine.Umount(cnst.OEMPath)
|
|
}()
|
|
|
|
err := utils.SetPersistentVariables(filepath.Join(cnst.OEMPath, "grubenv"), opts, &c)
|
|
if err != nil {
|
|
c.Logger.Logger.Error().Err(err).Str("grubfile", filepath.Join(cnst.OEMPath, "grubenv")).Msg("Failed to set grub options")
|
|
}
|
|
return err
|
|
}
|