-
Notifications
You must be signed in to change notification settings - Fork 174
Conversation
Any chance of getting the
Alternatively Fedora supports USB media for the kickstarts. Edit: Update: This works, and has the side benefit that the same kickstart file will work for VirtualBox builds as well: "floppy_files": ["http/fedora27-server.ks"],
"boot_command": [
"<tab> ",
"inst.ks=hd:/dev/fd0:/fedora27-server.ks ",
"biosdevname=0 ",
"net.ifnames=0 ",
"<enter>"
], I guess a floppy is just another file to a UNIX system, right? ;-) |
@patrickmslatteryvt have you considered adding a kickstart file into a custom install ISO? I have successfully done this with RHEL, but have never tried doing this with Fedora. I've also not been able to successfully use this plugin in my environment due to lack to ESXi cluster support. But once cluster support is added my plan is to test the custom install ISO approach. I'm restricted to vCenter v6.0 in my environment, so using the Here are some docs for how to embed a kickstart file into a custom RHEL install ISO. You may be able to adapt these instructions to work with Fedora. I'd be fascinated to know if you are able to get this to work with Fedora with the https://access.redhat.com/solutions/60959 |
@seanmalloy I didn't find it necessary to do that since Fedora 27 simply treated the floppy image as if it were a hard disk as I showed in code above. (everything's just a file!) |
you don't have to modify ISO images, the plugin now allows to mount multiple CD-ROM devices in parallel. Right now I'm automating macOS installation. It also doesn't have floppy drives, so the scripts are placed onto a custom ISO image. |
boot_command
parameter for keyboard typing.Special keys like
<bs>
,<leftAltOn>
, and<wait>
are supported.PACKER_KEY_INTERVAL
environment variable is supported.vSphere 6.5 is required as new API is used to send USB codes instead of VNC connection.
http_directory
parameter is not implemented but preseed files can be placed onto a floppy drive, see an example for Ubuntu.