From Fedora Project Wiki
(Redirected from QA:Testcase Kickstart FilePath KsCfg)
Description
This test will verify that anaconda can load a kickstart file from a file://
path. This is a typical case for when the kickstart file is located in the initrd.img
.
Setup
- Prepare a valid kickstart file.
- You can use an example kickstart available from QA:Testcase Kickstart Http Server Ks Cfg.
- If you want to create your own kickstart, you can examine the file
/root/anaconda-ks.cfg
on a previously installed system. This file contains the kickstart instructions used to install that system. For additional guidance on kickstart syntax, see Anaconda/Kickstart.
How to test
- You need to place your kickstart file inside the ramdisk. You can either use
--initrd-inject
option ofvirt-install
tool, or do that manually:- Option #1 - using virt-install:
Use
--initrd-inject <kickstart>
and--extra-args "inst.ks=file:/<kickstart>"
command line arguments. An example command would look like this (you need to change the location at least):virt-install --name FedoraTest --ram 3000 --disk pool=default,size=10 --location http://dl.fedoraproject.org/pub/alt/stage/42_Beta-1.6/Everything/x86_64/os/ --initrd-inject ks.cfg --extra-args "inst.ks=file:/ks.cfg"
- Option #2 - modifying ramdisk manually:
- Download the installer initial ramdisk. The ramdisk is typically called
images/pxeboot/initrd.img
- Place the kickstart file into the root directory of the installer initial ramdisk using the
cpio
command.echo ks.cfg | cpio -c -o >> initrd.img
- Boot into the installer kernel (
vmlinuz
) and the modified initial ramdisk (initrd.img
) using any available means (PXE, virt-install, virt-manager, etc) - At the bootloader prompt, provide a location for the kickstart file at the boot prompt. Using the example above:
inst.ks=file:///ks.cfg
You also need to provide
stage2=
boot option for Anaconda to start correctly.
- Download the installer initial ramdisk. The ramdisk is typically called
- Option #1 - using virt-install:
Use
Expected Results
- The
ks.cfg
should be appended to the initrd. The file presence is not shown bylsinitrd
(it can't display concatenated images). If you need to debug whether the file was included, boot the machine withrd.break=cmdline rd.shell
kernel command line argument and use shell to confirm the presence ofks.cfg
. - The installer successfully initiates a kickstart install in accordance with the instructions supplied by the
ks.cfg
file included in the initial ramdisk. To ensure the kickstart file is properly loaded, inspect theanaconda.log
for a lines similar to the following:INFO anaconda: Parsing kickstart: /run/install/ks.cfg
/run/install/ks.cfg
should contain your kickstart file - The installer should honor the kickstart commands provided in the
ks.cfg
file - If sufficient commands are provided to fully automate an installation, the installer must not prompt for user input.