fcn-virt 608 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/python3
  2. # Style Guide: https://www.python.org/dev/peps/pep-0008/
  3. import argparse
  4. import libvirt
  5. import sys
  6. parser = argparse.ArgumentParser()
  7. parser.add_argument("selection", type=str, choices=["is-active"])
  8. parser.add_argument("domain", type=str)
  9. args = parser.parse_args()
  10. def is_active(dom):
  11. conn = libvirt.openReadOnly(None)
  12. if conn == None:
  13. print('Failed to open connection to the hypervisor')
  14. sys.exit(1)
  15. dom = conn.lookupByName(args.domain)
  16. return dom.isActive()
  17. if args.selection == 'is-active':
  18. if is_active(args.domain):
  19. sys.exit(0)
  20. else:
  21. sys.exit(1)