mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-10 01:18:03 +03:00
virt-install: Drop xenpv install warnings
These may still be relevant, but I think it's fine just to let the config fail to install. I'm not even sure if anyone is trying xenpv these days...
This commit is contained in:
parent
a5e01c947d
commit
91cdb485cb
@ -694,7 +694,6 @@ c.add_compare("--cdrom http://example.com/path/to/some.iso", "cdrom-url")
|
||||
c.add_compare("--pxe --print-step all", "simple-pxe") # Diskless PXE install
|
||||
c.add_invalid("--pxe --virt-type bogus") # Bogus virt-type
|
||||
c.add_invalid("--pxe --arch bogus") # Bogus arch
|
||||
c.add_invalid("--paravirt --pxe") # PXE w/ paravirt
|
||||
c.add_invalid("--livecd") # LiveCD with no media
|
||||
c.add_invalid("--pxe --os-variant farrrrrrrge") # Bogus --os-variant
|
||||
c.add_invalid("--pxe --boot menu=foobar")
|
||||
|
@ -354,13 +354,6 @@ def check_option_collisions(options, guest, installer):
|
||||
fail(_("Install methods (%s) cannot be specified for "
|
||||
"container guests") % install_methods)
|
||||
|
||||
if guest.os.is_xenpv():
|
||||
if options.pxe:
|
||||
fail(_("Network PXE boot is not supported for paravirtualized "
|
||||
"guests"))
|
||||
if options.cdrom or options.livecd:
|
||||
fail(_("Paravirtualized guests cannot install off cdrom media."))
|
||||
|
||||
if (options.location and
|
||||
guest.conn.is_remote() and not
|
||||
guest.conn.support_remote_url_install()):
|
||||
|
Loading…
Reference in New Issue
Block a user