Files
virt-manager/virt-clone
T

10 lines
208 B
Python
Raw Normal View History

2020-01-26 17:12:09 -05:00
#!/usr/bin/python3
# Convenience wrapper for easily running virt-clone from the git tree
2013-03-17 17:06:52 -04:00
2020-01-26 17:12:09 -05:00
import os
2013-03-17 17:06:52 -04:00
import sys
2020-01-26 17:12:09 -05:00
sys.path.insert(0, os.path.dirname(__file__))
2020-01-26 17:12:09 -05:00
from virtinst import virtclone
virtclone.runcli()