File: virt-install

package info (click to toggle)
virt-manager 1%3A5.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 20,200 kB
  • sloc: python: 44,538; xml: 28,397; makefile: 17; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 218 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/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()