I was trying to use some of my virsh based scripts on Fedora 9 and ran into problems. After some debugging, it looks like that
there is an issue with passing the parameter "os_type" to the base class from LiveCdInstaller constructor. Take a look.
In LiveCdInstaller.py
-----------------------
class LiveCDInstaller(Guest.Installer):
def __init__(self, type = "xen", location = None, os_type = None):
Guest.Installer.__init__(self, type, location, os_type = None)
--------------------------------------------
Should be
class LiveCDInstaller(Guest.Installer):
def __init__(self, type = "xen", location = None, os_type = None):
-------V
Guest.Installer.__init__(self, type, location, os_type=os_type)
-----------------------
class LiveCDInstaller(Guest.Installer):
def __init__(self, type = "xen", location = None, os_type = None):
Guest.Installer.__init__(self, type, location, os_type = None)
--------------------------------------------
Should be
class LiveCDInstaller(Guest.Installer):
def __init__(self, type = "xen", location = None, os_type = None):
-------V
Guest.Installer.__init__(self, type, location, os_type=os_type)
_______________________________________________ et-mgmt-tools mailing list et-mgmt-tools@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/et-mgmt-tools