Skip to content

Commit

Permalink
Merge pull request #341 from jrha/ks_variants
Browse files Browse the repository at this point in the history
aii/ks: Add variants for EL8 and EL9
  • Loading branch information
wpoely86 committed Sep 2, 2023
2 parents 4525fdc + b9dfb7d commit de0baef
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
29 changes: 29 additions & 0 deletions aii-ks/src/main/pan/quattor/aii/ks/variants/el8.pan
@@ -0,0 +1,29 @@
# Template containing OS configuration and default values.

template quattor/aii/ks/variants/el8;

# Remove deprecated options
prefix "/system/aii/osinstall/ks";
"mouse" = null;
"langsupport" = null;
"packages_args" = list("--ignoremissing");

"part_label" = true;
"volgroup_required" = false;
"lvmforce" = true;

# el8
"version" = "33.16";
"enable_sshd" = true;
"cmdline" = true;

"logging/method" = 'bash';
"logging/protocol" = 'tcp';

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

prefix "/system/aii/nbp/pxelinux";
"setifnames" = true;
29 changes: 29 additions & 0 deletions aii-ks/src/main/pan/quattor/aii/ks/variants/el9.pan
@@ -0,0 +1,29 @@
# Template containing OS configuration and default values.

template quattor/aii/ks/variants/el9;

# Remove deprecated options
prefix "/system/aii/osinstall/ks";
"mouse" = null;
"langsupport" = null;
"packages_args" = list("--ignoremissing");

"part_label" = true;
"volgroup_required" = false;
"lvmforce" = true;

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

"logging/method" = 'bash';
"logging/protocol" = 'tcp';

# rhel
"eula" = true;

"packagesinpost" = true;

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

0 comments on commit de0baef

Please sign in to comment.