builder/amazon/chroot: process MountPath template

This commit is contained in:
Mitchell Hashimoto 2013-07-30 11:47:30 -07:00
parent 8d5f404fa7
commit 618e1b1678
1 changed files with 16 additions and 1 deletions

View File

@ -8,8 +8,14 @@ import (
"log"
"os"
"os/exec"
"path/filepath"
"text/template"
)
type mountPathData struct {
Device string
}
// StepMountDevice mounts the attached device.
//
// Produces:
@ -23,7 +29,13 @@ func (s *StepMountDevice) Run(state map[string]interface{}) multistep.StepAction
ui := state["ui"].(packer.Ui)
device := state["device"].(string)
mountPath := config.MountPath
mountPathRaw := new(bytes.Buffer)
t := template.Must(template.New("mountPath").Parse(config.MountPath))
t.Execute(mountPathRaw, &mountPathData{
Device: filepath.Basename(device),
})
mountPath := mountPathRaw.String()
log.Printf("Mount path: %s", mountPath)
if err := os.MkdirAll(mountPath, 0755); err != nil {
@ -46,6 +58,9 @@ func (s *StepMountDevice) Run(state map[string]interface{}) multistep.StepAction
return multistep.ActionHalt
}
// Set the mount path so we remember to unmount it later
s.mountPath = mountPath
return multistep.ActionContinue
}