Skip to content

Commit

Permalink
AII KS variant for EL9: fix required packages and Anaconda version
Browse files Browse the repository at this point in the history
- Also set the default bootproto to static else unconfigured interfacs
cause problem in ncm-nmstate
  • Loading branch information
jouvin committed Nov 4, 2024
1 parent 439b48c commit 67121c4
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions quattor/aii/ks/variants/el9.pan
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@ prefix "/system/aii/osinstall/ks";
"mouse" = null;
"langsupport" = null;
"packages_args" = list("--ignoremissing");

# Required by perl-CDB_File
"packages" = append("perl-English");
# Required by some Quattor components and must be installed before
# /etc/init.d is created by something else (e.g. a Quattor package)
"packages" = append("chkconfig");
"packages" = append("initscripts");

"end_script" = "%end"; # TODO: remove - no longer used
"part_label" = true;
"volgroup_required" = false;
"lvmforce" = true;

# el9
"version" = "34.25";
"bootproto" = "static";
"enable_sshd" = true;
"cmdline" = true;

Expand All @@ -22,8 +30,8 @@ prefix "/system/aii/osinstall/ks";

# rhel
"eula" = true;

"packagesinpost" = true;
# deal with optional repository
"packagesinpost" ?= true;

prefix "/system/aii/nbp/pxelinux";
"setifnames" = true;

0 comments on commit 67121c4

Please sign in to comment.