2013-07-30 18:30:53 -04:00
|
|
|
package chroot
|
|
|
|
|
|
|
|
import (
|
2013-09-27 21:10:33 -04:00
|
|
|
"bytes"
|
2013-07-30 18:30:53 -04:00
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"log"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StepCopyFiles copies some files from the host into the chroot environment.
|
2013-07-30 19:41:29 -04:00
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// copy_files_cleanup CleanupFunc - A function to clean up the copied files
|
|
|
|
// early.
|
2013-07-30 18:30:53 -04:00
|
|
|
type StepCopyFiles struct {
|
2013-07-30 19:41:29 -04:00
|
|
|
files []string
|
2013-07-30 18:30:53 -04:00
|
|
|
}
|
|
|
|
|
2013-08-31 15:58:55 -04:00
|
|
|
func (s *StepCopyFiles) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
config := state.Get("config").(*Config)
|
|
|
|
mountPath := state.Get("mount_path").(string)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-09-30 12:33:57 -04:00
|
|
|
wrappedCommand := state.Get("wrappedCommand").(CommandWrapper)
|
2013-09-27 21:10:33 -04:00
|
|
|
stderr := new(bytes.Buffer)
|
2013-07-30 18:30:53 -04:00
|
|
|
|
2013-07-30 19:45:49 -04:00
|
|
|
s.files = make([]string, 0, len(config.CopyFiles))
|
2013-07-30 18:30:53 -04:00
|
|
|
if len(config.CopyFiles) > 0 {
|
|
|
|
ui.Say("Copying files from host to chroot...")
|
|
|
|
for _, path := range config.CopyFiles {
|
|
|
|
ui.Message(path)
|
|
|
|
chrootPath := filepath.Join(mountPath, path)
|
|
|
|
log.Printf("Copying '%s' to '%s'", path, chrootPath)
|
|
|
|
|
2013-09-30 12:33:57 -04:00
|
|
|
cmdText, err := wrappedCommand(fmt.Sprintf("cp %s %s", path, chrootPath))
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error building copy command: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-09-27 21:10:33 -04:00
|
|
|
stderr.Reset()
|
2013-09-30 12:33:57 -04:00
|
|
|
cmd := ShellCommand(cmdText)
|
2013-09-27 21:10:33 -04:00
|
|
|
cmd.Stderr = stderr
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
err := fmt.Errorf(
|
|
|
|
"Error copying file: %s\nnStderr: %s", err, stderr.String())
|
2013-08-31 15:58:55 -04:00
|
|
|
state.Put("error", err)
|
2013-07-30 18:30:53 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-07-30 19:41:29 -04:00
|
|
|
|
|
|
|
s.files = append(s.files, chrootPath)
|
2013-07-30 18:30:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:58:55 -04:00
|
|
|
state.Put("copy_files_cleanup", s)
|
2013-07-30 18:30:53 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:58:55 -04:00
|
|
|
func (s *StepCopyFiles) Cleanup(state multistep.StateBag) {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-07-30 19:41:29 -04:00
|
|
|
if err := s.CleanupFunc(state); err != nil {
|
|
|
|
ui.Error(err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 06:54:53 -04:00
|
|
|
func (s *StepCopyFiles) CleanupFunc(state multistep.StateBag) error {
|
2013-09-30 12:33:57 -04:00
|
|
|
wrappedCommand := state.Get("wrappedCommand").(CommandWrapper)
|
2013-07-30 19:41:29 -04:00
|
|
|
if s.files != nil {
|
|
|
|
for _, file := range s.files {
|
|
|
|
log.Printf("Removing: %s", file)
|
2013-09-30 12:33:57 -04:00
|
|
|
localCmdText, err := wrappedCommand(fmt.Sprintf("rm -f %s", file))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
localCmd := ShellCommand(localCmdText)
|
2013-09-26 21:34:01 -04:00
|
|
|
if err := localCmd.Run(); err != nil {
|
2013-07-30 19:41:29 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s.files = nil
|
|
|
|
return nil
|
|
|
|
}
|