Merge pull request #2931 from Ancillas/patch-1

Added alternative floppy boot command syntax
pull/2935/head
Mark Peek 11 years ago
commit bef966e9e9

@ -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>"
}
]
}
```

Loading…
Cancel
Save