packer-cn/builder/vmware/common/step_compact_disk.go

56 lines
1.4 KiB
Go
Raw Normal View History

2013-12-25 01:09:22 -05:00
package common
2013-07-01 22:25:33 -04:00
import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
2013-07-02 20:22:11 -04:00
"log"
2013-07-01 22:25:33 -04:00
)
2013-07-02 20:22:11 -04:00
// This step compacts the virtual disk for the VM unless the "skip_compaction"
// boolean is true.
2013-07-01 22:25:33 -04:00
//
// Uses:
// driver Driver
// full_disk_path string
2013-07-01 22:25:33 -04:00
// ui packer.Ui
//
// Produces:
// <nothing>
2013-12-25 01:09:22 -05:00
type StepCompactDisk struct {
Skip bool
}
2013-07-01 22:25:33 -04:00
2013-12-25 01:09:22 -05:00
func (s StepCompactDisk) Run(state multistep.StateBag) multistep.StepAction {
driver := state.Get("driver").(Driver)
2013-08-31 15:50:25 -04:00
ui := state.Get("ui").(packer.Ui)
full_disk_path := state.Get("full_disk_path").(string)
2013-07-01 22:25:33 -04:00
2013-12-25 01:09:22 -05:00
if s.Skip {
2013-07-02 20:22:11 -04:00
log.Println("Skipping disk compaction step...")
return multistep.ActionContinue
}
2013-07-01 22:25:33 -04:00
ui.Say("Compacting the disk image")
2013-07-02 01:12:57 -04:00
if err := driver.CompactDisk(full_disk_path); err != nil {
2013-08-31 15:50:25 -04:00
state.Put("error", fmt.Errorf("Error compacting disk: %s", err))
2013-07-01 22:25:33 -04:00
return multistep.ActionHalt
}
2015-06-17 23:23:04 -04:00
if state.Get("additional_disk_paths") != nil {
if moreDisks := state.Get("additional_disk_paths").([]string); len(moreDisks) > 0 {
for i, path := range moreDisks {
2015-06-17 23:23:04 -04:00
ui.Say(fmt.Sprintf("Compacting additional disk image %d", i+1))
if err := driver.CompactDisk(path); err != nil {
state.Put("error", fmt.Errorf("Error compacting additional disk %d: %s", i+1, err))
return multistep.ActionHalt
}
}
}
}
2013-07-01 22:25:33 -04:00
return multistep.ActionContinue
}
2013-12-25 01:09:22 -05:00
func (StepCompactDisk) Cleanup(multistep.StateBag) {}