mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-07-29 19:41:52 +03:00
* python/tests/create.py: adapt to new naming scheme in FC5
Daniel
This commit is contained in:
@ -29,8 +29,13 @@ if osroot == None:
|
||||
|
||||
kernel=open("/proc/version").read().split()
|
||||
kernelOv = kernel[2]
|
||||
kernelU = "/boot/vmlinuz-" + kernelOv.replace('hypervisor', 'guest')
|
||||
initrdU = "/boot/initrd-" + kernelOv.replace('hypervisor', 'guest') + ".img"
|
||||
|
||||
if kernelOv.find('hypervisor'):
|
||||
kernelU = "/boot/vmlinuz-" + kernelOv.replace('hypervisor', 'guest')
|
||||
initrdU = "/boot/initrd-" + kernelOv.replace('hypervisor', 'guest') + ".img"
|
||||
elif kernelOv.find('xen0'):
|
||||
kernelU = "/boot/vmlinuz-" + kernelOv.replace('xen0', 'xenU')
|
||||
initrdU = "/boot/initrd-" + kernelOv.replace('xen0', 'xenU') + ".img"
|
||||
|
||||
if not os.access(kernelU, os.R_OK):
|
||||
print "Did not found the guest kernel %s" % (kernelU)
|
||||
|
Reference in New Issue
Block a user