40 lines
954 B
Go
40 lines
954 B
Go
package virtualbox
|
|
|
|
import (
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
"os"
|
|
)
|
|
|
|
type stepPrepareOutputDir struct{}
|
|
|
|
func (stepPrepareOutputDir) Run(state map[string]interface{}) multistep.StepAction {
|
|
config := state["config"].(*config)
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
if _, err := os.Stat(config.OutputDir); err == nil && config.PackerForce {
|
|
ui.Say("Deleting previous output directory...")
|
|
os.RemoveAll(config.OutputDir)
|
|
}
|
|
|
|
if err := os.MkdirAll(config.OutputDir, 0755); err != nil {
|
|
state["error"] = err
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (stepPrepareOutputDir) Cleanup(state map[string]interface{}) {
|
|
_, cancelled := state[multistep.StateCancelled]
|
|
_, halted := state[multistep.StateHalted]
|
|
|
|
if cancelled || halted {
|
|
config := state["config"].(*config)
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
ui.Say("Deleting output directory...")
|
|
os.RemoveAll(config.OutputDir)
|
|
}
|
|
}
|