44 lines
1.0 KiB
Go
44 lines
1.0 KiB
Go
package vmware
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
"log"
|
|
)
|
|
|
|
// This step compacts the virtual disk for the VM unless the "skip_compaction"
|
|
// boolean is true.
|
|
//
|
|
// Uses:
|
|
// config *config
|
|
// driver Driver
|
|
// full_disk_path string
|
|
// ui packer.Ui
|
|
//
|
|
// Produces:
|
|
// <nothing>
|
|
type stepCompactDisk struct{}
|
|
|
|
func (stepCompactDisk) Run(state multistep.StateBag) multistep.StepAction {
|
|
config := state.Get("config").(*config)
|
|
driver := state.Get("driver").(Driver)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
full_disk_path := state.Get("full_disk_path").(string)
|
|
|
|
if config.SkipCompaction == true {
|
|
log.Println("Skipping disk compaction step...")
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
ui.Say("Compacting the disk image")
|
|
if err := driver.CompactDisk(full_disk_path); err != nil {
|
|
state.Put("error", fmt.Errorf("Error compacting disk: %s", err))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (stepCompactDisk) Cleanup(multistep.StateBag) {}
|