2021-10-02 22:23:29 +08:00
|
|
|
#!/usr/bin/env python3
|
2020-01-27 06:12:09 +08:00
|
|
|
# Convenience wrapper for easily running virt-install from the git tree
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2020-01-27 06:12:09 +08:00
|
|
|
import os
|
2013-03-18 05:06:52 +08:00
|
|
|
import sys
|
2020-01-27 06:12:09 +08:00
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2020-01-27 06:12:09 +08:00
|
|
|
from virtinst import virtinstall
|
|
|
|
virtinstall.runcli()
|