mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 19:31:18 +00:00
538686f9c0
* src/libvirt_sym.version: add initialize entry point * src/libvirt.c: make sure we always initialize the lib * python/tests/*.py: start updating exemple for exception handling as pointed by Jim Meyering Daniel
32 lines
552 B
Python
Executable File
32 lines
552 B
Python
Executable File
#!/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:
|
|
print 'Failed to open connection to the hypervisor'
|
|
sys.exit(1)
|
|
|
|
# print conn
|
|
|
|
try:
|
|
dom0 = conn.lookupByName("Domain-0")
|
|
except:
|
|
print 'Failed to find the main domain'
|
|
sys.exit(1)
|
|
|
|
# print dom0
|
|
|
|
print "Domain 0: id %d running %s" % (dom0.ID(), dom0.OSType())
|
|
print dom0.info()
|
|
del dom0
|
|
del conn
|
|
print "OK"
|
|
|
|
sys.exit(0)
|