From a1feb086a638ef8380e008f88835567fdc10f44c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 31 Oct 2024 14:16:07 -0500 Subject: [PATCH] runs again Signed-off-by: Jeff Carr --- argv.go | 10 ++++++---- main.go | 9 +++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/argv.go b/argv.go index 8e86d88..917dffb 100644 --- a/argv.go +++ b/argv.go @@ -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 { diff --git a/main.go b/main.go index 366687e..0ae2a4d 100644 --- a/main.go +++ b/main.go @@ -48,6 +48,7 @@ func main() { log.Info("dump something here") os.Exit(0) } + if argv.Create != nil { dir := filepath.Dir(argv.Create.Filename) filename := filepath.Base(argv.Create.Filename) @@ -58,10 +59,18 @@ func main() { log.Info("virtigoctl create end") os.Exit(0) } + if argv.Start != nil { log.Info("start the vm's here:", argv.Start) os.Exit(0) } + + if argv.Import != nil { + log.Info("should import here", argv.Start) + log.Info("virtigoctl import --host farm04 --name grafana") + log.Info("import", argv.Import.Host, argv.Import.DomainName) + os.Exit(0) + } } func dumpDroplets(full bool) error {