Skip to content

Commit

Permalink
Add missing hooks to after install uki
Browse files Browse the repository at this point in the history
we were missing the bundle stuff, mounts (for custom mounts) and
lifecycle

Signed-off-by: Itxaka <[email protected]>
  • Loading branch information
Itxaka committed Apr 23, 2024
1 parent 979c4ad commit faec20d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion internal/agent/hooks/hook.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ var FirstBoot = []Interface{
}

// AfterUkiInstall sets which Hooks to run after uki runs the install action
var AfterUkiInstall = []Interface{}
var AfterUkiInstall = []Interface{
&BundlePostInstall{},
&CustomMounts{},
&Lifecycle{},
}

var UKIEncryptionHooks = []Interface{
&KcryptUKI{},
Expand Down

0 comments on commit faec20d

Please sign in to comment.