ignore 'custom' cpu settings from XML
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
fbd0d35660
commit
7af7c876e4
1
argv.go
1
argv.go
|
@ -12,6 +12,7 @@ var argv args
|
|||
|
||||
type args 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"`
|
||||
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"`
|
||||
|
|
|
@ -330,13 +330,14 @@ func dumpNonStandardXML(domcfg *libvirtxml.Domain) (string, error) {
|
|||
case "host-model":
|
||||
domcfg.CPU = nil
|
||||
case "custom":
|
||||
fmt.Printf("custom CPU: %+v\n", domcfg.CPU)
|
||||
fmt.Printf("custom CPU Model: %+v\n", domcfg.CPU.Model)
|
||||
// domcfg.CPU = nil
|
||||
updatedXML, _ := xml.MarshalIndent(domcfg.CPU, "", " ")
|
||||
log.Info("Non-Standard XML Start")
|
||||
log.Info("Ignore custom CPU Start")
|
||||
fmt.Println(string(updatedXML))
|
||||
log.Info("Non-Standard XML End")
|
||||
log.Info("Ignore custom CPU End")
|
||||
log.Info("Add --xml-ignore-cpu to ignore this")
|
||||
if argv.IgnoreCpu {
|
||||
domcfg.CPU = nil
|
||||
}
|
||||
default:
|
||||
fmt.Printf("unknown CPU: %+v\n", domcfg.CPU)
|
||||
fmt.Printf("unknown CPU Model: %+v\n", domcfg.CPU.Model)
|
||||
|
@ -348,10 +349,6 @@ func dumpNonStandardXML(domcfg *libvirtxml.Domain) (string, error) {
|
|||
}
|
||||
}
|
||||
|
||||
// this goes away if SecLabel is zero'd out?
|
||||
//if domcfg.Metadata != nil {
|
||||
// fmt.Printf("? Metadata: %+v\n", domcfg.Metadata)
|
||||
//}
|
||||
var secnormal bool = true
|
||||
if len(domcfg.SecLabel) != 0 {
|
||||
for _, sec := range domcfg.SecLabel {
|
||||
|
@ -367,6 +364,7 @@ func dumpNonStandardXML(domcfg *libvirtxml.Domain) (string, error) {
|
|||
if secnormal {
|
||||
domcfg.SecLabel = nil
|
||||
}
|
||||
|
||||
// ignore Metadata
|
||||
// this is probably something about what kind of OS you might be running
|
||||
// todo: get this directly from the disk image
|
||||
|
|
Loading…
Reference in New Issue