diff options
| author | Jeff Carr <[email protected]> | 2024-10-24 09:27:23 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-24 09:27:23 -0500 |
| commit | aa742d099d62697a8399ed5f8f46122710eef0e9 (patch) | |
| tree | 5f5180e9f8c0476ba4934591546d72ed1e6026b0 /argv.go | |
| parent | acdd6e9c5be6e2d60f6a8defbaccc2f9e09a421d (diff) | |
keep backups of the config files
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
@@ -11,12 +11,12 @@ import "go.wit.com/log" var argv args type args struct { - Dir string `arg:"--dir" help:"defaults to ~/.config/virtigo/"` - Port int `arg:"--port" default:"8080" help:"specify a different default port"` + Xml []string `arg:"--add-xml" help:"add libvirt xml files"` + CfgDir string `arg:"--dir" help:"defaults to ~/.config/virtigo/"` Hosts []string `arg:"--hosts" help:"hosts to connect to"` + Port int `arg:"--port" default:"8080" help:"allow droplet events via http"` Uptime bool `arg:"--uptime" default:"true" help:"allow uptime checks for things like Kuma"` Daemon bool `arg:"--daemon" help:"run in daemon mode"` - Xml []string `arg:"--add-xml" help:"add libvirt xml files"` Save bool `arg:"--save" default:"false" help:"save xml changes to the protobuf values"` } @@ -24,7 +24,9 @@ func (a args) Description() string { return ` virtigo will help control your cluster of hypervisiors -go install go.wit.com/apps/virtigo@latest +This maintains a master list of all your vm's (aka 'droplets') +in your homelab cloud. You can import libvirt xml files. +This app talks to your hypervisors via the virtigod daemon. ` } |
