diff options
| author | Jeff Carr <[email protected]> | 2024-10-31 14:16:07 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-31 14:16:07 -0500 |
| commit | a1feb086a638ef8380e008f88835567fdc10f44c (patch) | |
| tree | 3a4961b71810f341573d3e8940a18ab7e575dd28 /argv.go | |
| parent | ec9d4649976e1a37a474db39bb5943e2f57f9b65 (diff) | |
runs againv0.0.2
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -24,10 +24,12 @@ type CreateCmd struct { } type ImportXml struct { - Xml []string `arg:"--libvirt" help:"import qemu xml files: --libvirt /etc/libvirt/qemu/*.xml"` - IgnoreCpu bool `arg:"--xml-ignore-cpu" default:"true" help:"ignore non-standard libvirt xml cpus"` - IgnoreBr bool `arg:"--xml-ignore-net" default:"true" help:"ignore network bridge name changes"` - IgnDisk bool `arg:"--xml-ignore-disk" default:"false" help:"ignore duplicate disk names"` + Xml []string `arg:"--libvirt" help:"import qemu xml files: --libvirt /etc/libvirt/qemu/*.xml"` + IgnoreCpu bool `arg:"--xml-ignore-cpu" default:"true" help:"ignore non-standard libvirt xml cpus"` + IgnoreBr bool `arg:"--xml-ignore-net" default:"true" help:"ignore network bridge name changes"` + IgnDisk bool `arg:"--xml-ignore-disk" default:"false" help:"ignore duplicate disk names"` + DomainName string `arg:"--name" help:"virsh domain name"` + Host string `arg:"--host" help:"hypervisor hostname"` } type args struct { |
