Workaround for bundle install in new /var/lib/extensions directory (#147)

This commit is contained in:
Itxaka
2023-09-15 15:40:27 +02:00
committed by GitHub
parent 51ca8a8589
commit 3e4693d697
2 changed files with 41 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ type Interface interface {
var AfterInstall = []Interface{
&GrubOptions{}, // Set custom GRUB options
&BundleOption{},
&BundlePostInstall{},
&CustomMounts{},
&Kcrypt{},
&Lifecycle{}, // Handles poweroff/reboot by config options
@@ -26,7 +26,7 @@ var AfterUpgrade = []Interface{
}
var FirstBoot = []Interface{
&BundlePostInstall{},
&BundleFirstBoot{},
&GrubPostInstallOptions{},
}