2015-06-21 07:36:07 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2015-06-21 07:36:07 -04:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2015-06-21 07:36:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// StepOutputDir sets up the output directory by creating it if it does
|
|
|
|
// not exist, deleting it if it does exist and we're forcing, and cleaning
|
|
|
|
// it up when we're done with it.
|
|
|
|
type StepOutputDir struct {
|
|
|
|
Force bool
|
|
|
|
Path string
|
2017-03-09 02:43:38 -05:00
|
|
|
|
|
|
|
cleanup bool
|
2015-06-21 07:36:07 -04:00
|
|
|
}
|
|
|
|
|
2019-03-29 11:50:02 -04:00
|
|
|
func (s *StepOutputDir) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2015-06-21 07:36:07 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
2017-03-09 02:43:38 -05:00
|
|
|
if _, err := os.Stat(s.Path); err == nil {
|
|
|
|
if !s.Force {
|
|
|
|
err := fmt.Errorf(
|
|
|
|
"Output directory exists: %s\n\n"+
|
|
|
|
"Use the force flag to delete it prior to building.",
|
|
|
|
s.Path)
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2015-06-21 07:36:07 -04:00
|
|
|
ui.Say("Deleting previous output directory...")
|
|
|
|
os.RemoveAll(s.Path)
|
|
|
|
}
|
|
|
|
|
2017-03-09 02:43:38 -05:00
|
|
|
// Enable cleanup
|
|
|
|
s.cleanup = true
|
|
|
|
|
2015-06-21 07:36:07 -04:00
|
|
|
// Create the directory
|
|
|
|
if err := os.MkdirAll(s.Path, 0755); err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we can write in the directory
|
|
|
|
f, err := os.Create(filepath.Join(s.Path, "_packer_perm_check"))
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("Couldn't write to output directory: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
f.Close()
|
|
|
|
os.Remove(f.Name())
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepOutputDir) Cleanup(state multistep.StateBag) {
|
2017-03-09 02:43:38 -05:00
|
|
|
if !s.cleanup {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-06-21 07:36:07 -04:00
|
|
|
_, cancelled := state.GetOk(multistep.StateCancelled)
|
|
|
|
_, halted := state.GetOk(multistep.StateHalted)
|
|
|
|
|
|
|
|
if cancelled || halted {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
ui.Say("Deleting output directory...")
|
|
|
|
for i := 0; i < 5; i++ {
|
|
|
|
err := os.RemoveAll(s.Path)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Error removing output dir: %s", err)
|
|
|
|
time.Sleep(2 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|