virt-manager/virt-xml

10 lines
206 B
Plaintext
Raw Normal View History

2024-05-17 13:37:53 +08:00
#!/usr/bin/env python3
# Convenience wrapper for easily running virt-xml from the git tree
2022-11-11 16:30:04 +08:00
2024-05-17 13:37:53 +08:00
import os
2022-11-11 16:30:04 +08:00
import sys
2024-05-17 13:37:53 +08:00
sys.path.insert(0, os.path.dirname(__file__))
2022-11-11 16:30:04 +08:00
2024-05-17 13:37:53 +08:00
from virtinst import virtxml
virtxml.runcli()