diff options
| author | Jeff Carr <[email protected]> | 2024-10-25 14:52:28 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-25 14:52:28 -0500 |
| commit | 7af7c876e46fa0444ea0930cfab599922a2367d2 (patch) | |
| tree | c6c29bc558760771b1db903c40ea128f1bdf45b0 /argv.go | |
| parent | fbd0d3566097a7355015f16cc21f4c0cee13e17d (diff) | |
ignore 'custom' cpu settings from XML
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -11,11 +11,12 @@ import "go.wit.com/log" var argv args type args struct { - Xml []string `arg:"--libvirt" help:"import qemu xml files: --libvirt /etc/libvirt/qemu/*.xml"` - Save bool `arg:"--save" default:"false" help:"save protobuf config after import"` - Config string `arg:"env:VIRTIGO_HOME" help:"defaults to ~/.config/virtigo/"` - Port int `arg:"--port" default:"8080" help:"allow droplet events via http"` - Daemon bool `arg:"--daemon" help:"run in daemon mode"` + 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"` + Save bool `arg:"--save" default:"false" help:"save protobuf config after import"` + Config string `arg:"env:VIRTIGO_HOME" help:"defaults to ~/.config/virtigo/"` + Port int `arg:"--port" default:"8080" help:"allow droplet events via http"` + Daemon bool `arg:"--daemon" help:"run in daemon mode"` } // Uptime bool `arg:"--uptime" default:"true" help:"allow uptime checks for things like Kuma"` |
