From faec20db3e829c215750e842e4c19f43ef27116f Mon Sep 17 00:00:00 2001 From: Itxaka Date: Tue, 23 Apr 2024 14:18:18 +0200 Subject: [PATCH] Add missing hooks to after install uki we were missing the bundle stuff, mounts (for custom mounts) and lifecycle Signed-off-by: Itxaka --- internal/agent/hooks/hook.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/internal/agent/hooks/hook.go b/internal/agent/hooks/hook.go index 555f1a5c..73a408e7 100644 --- a/internal/agent/hooks/hook.go +++ b/internal/agent/hooks/hook.go @@ -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{},