mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
* chore: First pass of adding secure boot key enrollment * feat: Add secure boot support * feat: Removed Test this media grub entry and set default to install * fix: simplify secureboot scripts --------- Co-authored-by: Kyle Gospodnetich <me@kylegospodneti.ch>
9 lines
677 B
Cheetah
9 lines
677 B
Cheetah
append usr/share/anaconda/interactive-defaults.ks "%post --logfile=/root/ks-post.log --erroronfail --nochroot"
|
|
append usr/share/anaconda/interactive-defaults.ks "set -m"
|
|
append usr/share/anaconda/interactive-defaults.ks "/run/install/repo/enroll-secureboot-key.sh"
|
|
append usr/share/anaconda/interactive-defaults.ks "%end"
|
|
|
|
append usr/share/anaconda/post-scripts/secure_boot_key.ks "%post --logfile=/root/ks-post.log --erroronfail --nochroot"
|
|
append usr/share/anaconda/post-scripts/secure_boot_key.ks "set -m"
|
|
append usr/share/anaconda/post-scripts/secure_boot_key.ks "/run/install/repo/enroll-secureboot-key.sh"
|
|
append usr/share/anaconda/post-scripts/secure_boot_key.ks "%end"
|