mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-08-02 04:21:59 +03:00
* docs/examples/examples.xsl docs/examples/index.html
docs/site.xsl: integates the examples page in the web site * docs//* : fixed generator and rebuilt the docs * python/tests/basic.py python/tests/create.py: couple cleanups Daniel
This commit is contained in:
@ -1,6 +1,11 @@
|
||||
#!/usr/bin/python -u
|
||||
import libvirt
|
||||
import sys
|
||||
import os
|
||||
|
||||
if not os.access("/proc/xen", os.R_OK):
|
||||
print 'System is not running a Xen kernel'
|
||||
sys.exit(1)
|
||||
|
||||
conn = libvirt.openReadOnly(None)
|
||||
if conn == None:
|
||||
|
@ -4,6 +4,10 @@ import sys
|
||||
import os
|
||||
import time
|
||||
|
||||
if not os.access("/proc/xen", os.R_OK):
|
||||
print 'System is not running a Xen kernel'
|
||||
sys.exit(1)
|
||||
|
||||
#
|
||||
# Try to provide default OS images paths here, of course non standard
|
||||
#
|
||||
@ -23,10 +27,6 @@ if osroot == None:
|
||||
print "Could not find a guest OS root, edit to add the path in osroots"
|
||||
sys.exit(1)
|
||||
|
||||
if not os.access("/proc/xen", os.R_OK):
|
||||
print 'System is not running a Xen kernel'
|
||||
sys.exit(1)
|
||||
|
||||
kernel=open("/proc/version").read().split()
|
||||
kernelOv = kernel[2]
|
||||
kernelU = "/boot/vmlinuz-" + kernelOv.replace('hypervisor', 'guest')
|
||||
|
Reference in New Issue
Block a user