File: virt-xml

package info (click to toggle)
virt-manager 1%3A5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 20,404 kB
  • sloc: python: 45,877; xml: 29,099; makefile: 17; sh: 6
file content (11 lines) | stat: -rwxr-xr-x 222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3
# Convenience wrapper for easily running virt-xml from the git tree

import os
import sys

sys.path.insert(0, os.path.dirname(__file__))

from virtinst import virtxml  # noqa: E402

virtxml.runcli()