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 /main.go | |
| parent | ec9d4649976e1a37a474db39bb5943e2f57f9b65 (diff) | |
runs againv0.0.2
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 { |
