
support booting into any other mode than the default
#
#Variable to give user control over the use of setboot. When the variable
#is YES, autoboot is set before the first reboot and restored after the
#first reboot. When the variable is NO, autoboot is never changed.
#
enum _hp_force_autoboot
_hp_force_autoboot = { "YES", "NO" } init _hp_force_autoboot = "YES"
_hp_force_autoboot help_text "Force
The following example enables you to set, using the Additional button, whether the final system uses DHCP to obtain an IP address and hostname once it is installed or recovered.
#
#Variable to give user control over DHCP.
#If YES, then DHCP is turned off on the system.
enum _disable_dhcp
_disable_dhcp = { "YES", "NO" } init _disable_dhcp = "NO"
_disable_dhcp help_text "Disable DHCP?" _disable_dhcp == "YES" {
DISABLE_DHCP=TRUE
}
In the next example, you can configure the value of _hp_addnl_fs_free_pct. The variable is defined as a list of values that can be selected from the Additional button. If an enum had been placed before the _hp_addnl_fs_free_pct you would only be able to select a value from 0 to
10.Instead, you can select a value from 0 to 10 or enter another value when changing the variable using the Additional button.
#
#JAGae82704 fix. Variable to give user control over the amount of
#free space left over in a logical volume. It defaults to 10. The
#range provided if you click on the button is from
#value can be entered directly in the field if desired.
#
_hp_addnl_fs_free_pct = { 0,1,2,3,4,5,6,7,8,9,10 } init _hp_addnl_fs_free_pct = 10
_hp_addnl_fs_free_pct help_text "Additional free space %"
The last part of configuration accomplishes several things:1.Sets the os_release attribute for the swinstall command line.63