Merge pull request #2931 from Ancillas/patch-1

Added alternative floppy boot command syntax
This commit is contained in:
Mark Peek 2015-11-11 17:00:17 -08:00
commit bef966e9e9
1 changed files with 16 additions and 0 deletions

View File

@ -421,3 +421,19 @@ file by attaching a floppy disk. An example below, based on RHEL:
]
}
```
It's also worth noting that `ks=floppy` has been deprecated. Later versions of the Anaconda installer (used in RHEL/CentOS 7 and Fedora) may require a different syntax to source a kickstart file from a mounted floppy image.
``` {.javascript}
{
"builders": [
{
"type":"vmware-iso",
"floppy_files": [
"folder/ks.cfg"
],
"boot_command": "<tab> inst.text inst.ks=hd:fd0:/ks.cfg <enter><wait>"
}
]
}
```