#!/bin/bash # $HeadURL$ $LastChangedRevision$ # Properties MY_ID=system_boot_cd PARENT_ID=system_boot MY_PRIVATE_ATTRIBUTES="uname status" MY_PUBLIC_ATTRIBUTES= MY_ATTRIBUTES="$MY_PRIVATE_ATTRIBUTES $MY_PUBLIC_ATTRIBUTES" MY_HELPER_IDS= for MY_ATTRIBUTE in ${MY_ATTRIBUTES^^}; do eval "$MY_ATTRIBUTE="; done # Defaults for the questions we ask (should only used here) # Hooks create_prologue() { # my attributes inherit MY_ATTRIBUTES ${MY_ATTRIBUTES^^} # those inherited attributes i will use inherit KERNEL_COMMANDLINE # real local # Guts warning "when booting from CD, be sure to add the following to the boot parameters: $KERNEL_COMMANDLINE" if $VM_FLAG and ! $HVM_FLAG; then warning "after which, the installation will continue over the serial console. You can remove the video and display later" fi return 0 } list_prologue() { : }