virtigod compiles again

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-11-01 10:23:07 -05:00
parent 1a72fdceef
commit d8c3744f20
1 changed files with 11 additions and 8 deletions

View File

@ -23,21 +23,24 @@ func (c *NewCluster) ConfigSave() error {
}
// make a new droplets struct
var d *Droplets
d = new(Droplets)
// copy all the records over to the new struct
for _, drop := range c.d.Droplets {
d.Droplets = append(d.Droplets, drop)
var dcopy *Droplets
dcopy = new(Droplets)
loop := c.DropletsAll() // get the list of droplets
for loop.Scan() {
d := loop.Droplet()
var newd Droplet
newd = *d
dcopy.Droplets = append(dcopy.Droplets, &newd)
}
// delete all the Current data so it's not put in the config file
for _, drop := range d.Droplets {
for _, drop := range dcopy.Droplets {
drop.Current = nil
}
if err := ConfigWriteJSON(d, "droplets.json"); err != nil {
if err := ConfigWriteJSON(dcopy, "droplets.json"); err != nil {
fmt.Println("droplets.json write failed")
return err
}
if err := ConfigWriteTEXT(d, "droplets.text"); err != nil {
if err := ConfigWriteTEXT(dcopy, "droplets.text"); err != nil {
fmt.Println("droplets.json write failed")
return err
}