Skip to content

Commit

Permalink
Merge pull request #352 from jouvin/ks_bootproto_default_static
Browse files Browse the repository at this point in the history
Define default installation boot protocol as static
  • Loading branch information
jrha authored Nov 12, 2024
2 parents 9d0bff0 + aa5aa2d commit 09d3129
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 7 additions & 5 deletions aii-ks/src/main/pan/quattor/aii/ks/config.pan
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,13 @@ variable AII_OSINSTALL_BOOTDISK_ORDER ?= AII_OSINSTALL_DISKS['boot_order'];
variable AII_OSINSTALL_DISABLE_SERVICE ?= null;
"disable_service" ?= AII_OSINSTALL_DISABLE_SERVICE;


#
# How will we configure the network during the installation?
# Default to 'dhcp'
variable AII_OSINSTALL_BOOTPROTO ?= 'dhcp';
@{
desc = default boot protocol for installation
values = choice between 'dhcp' or 'static' (see schema)
default = static
required = no
}
variable AII_OSINSTALL_BOOTPROTO ?= 'static';
"bootproto" ?= AII_OSINSTALL_BOOTPROTO;

#
Expand Down
1 change: 0 additions & 1 deletion aii-ks/src/main/pan/quattor/aii/ks/variants/el7.pan
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ prefix "/system/aii/osinstall/ks";

# el7
"version" = "19.31";
"bootproto" = "static";
"enable_sshd" = true;
"cmdline" = true;

Expand Down

0 comments on commit 09d3129

Please sign in to comment.