packer-cn/builder/vmware/step_compact_disk.go

44 lines
1.0 KiB
Go
Raw Normal View History

2013-07-01 22:25:33 -04:00
package vmware
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:
2013-07-02 20:22:11 -04:00
// config *config
2013-07-01 22:25:33 -04:00
// driver Driver
// full_disk_path string
2013-07-01 22:25:33 -04:00
// ui packer.Ui
//
// Produces:
// <nothing>
type stepCompactDisk struct{}
func (stepCompactDisk) Run(state map[string]interface{}) multistep.StepAction {
2013-07-02 20:22:11 -04:00
config := state["config"].(*config)
2013-07-01 22:25:33 -04:00
driver := state["driver"].(Driver)
ui := state["ui"].(packer.Ui)
2013-07-02 01:12:57 -04:00
full_disk_path := state["full_disk_path"].(string)
2013-07-01 22:25:33 -04:00
2013-07-02 20:22:11 -04:00
if config.SkipCompaction == true {
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 {
state["error"] = fmt.Errorf("Error compacting disk: %s", err)
2013-07-01 22:25:33 -04:00
return multistep.ActionHalt
}
return multistep.ActionContinue
}
func (stepCompactDisk) Cleanup(map[string]interface{}) {}