1
0
mirror of https://github.com/virt-manager/virt-manager.git synced 2025-01-01 21:18:01 +03:00
virt-manager/virt-install
2021-10-04 16:26:08 -04:00

10 lines
218 B
Python
Executable File

#!/usr/bin/env python3
# Convenience wrapper for easily running virt-install from the git tree
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
from virtinst import virtinstall
virtinstall.runcli()