2013-07-30 15:30:53 -07:00
|
|
|
package chroot
|
|
|
|
|
|
|
|
import (
|
2013-09-28 01:10:33 +00:00
|
|
|
"bytes"
|
2018-01-22 15:32:33 -08:00
|
|
|
"context"
|
2013-07-30 15:30:53 -07:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"path/filepath"
|
2018-01-22 17:21:10 -08:00
|
|
|
|
2018-01-22 15:32:33 -08:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2018-01-22 17:21:10 -08:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2013-07-30 15:30:53 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// StepCopyFiles copies some files from the host into the chroot environment.
|
2013-07-30 16:41:29 -07:00
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// copy_files_cleanup CleanupFunc - A function to clean up the copied files
|
|
|
|
// early.
|
2013-07-30 15:30:53 -07:00
|
|
|
type StepCopyFiles struct {
|
2013-07-30 16:41:29 -07:00
|
|
|
files []string
|
2013-07-30 15:30:53 -07:00
|
|
|
}
|
|
|
|
|
2018-01-22 15:31:41 -08:00
|
|
|
func (s *StepCopyFiles) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2013-08-31 12:58:55 -07:00
|
|
|
config := state.Get("config").(*Config)
|
|
|
|
mountPath := state.Get("mount_path").(string)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-09-30 09:33:57 -07:00
|
|
|
wrappedCommand := state.Get("wrappedCommand").(CommandWrapper)
|
2013-09-28 01:10:33 +00:00
|
|
|
stderr := new(bytes.Buffer)
|
2013-07-30 15:30:53 -07:00
|
|
|
|
2013-07-30 16:45:49 -07:00
|
|
|
s.files = make([]string, 0, len(config.CopyFiles))
|
2013-07-30 15:30:53 -07: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-10-17 22:50:02 +00:00
|
|
|
cmdText, err := wrappedCommand(fmt.Sprintf("cp --remove-destination %s %s", path, chrootPath))
|
2013-09-30 09:33:57 -07:00
|
|
|
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-28 01:10:33 +00:00
|
|
|
stderr.Reset()
|
2013-09-30 09:33:57 -07:00
|
|
|
cmd := ShellCommand(cmdText)
|
2013-09-28 01:10:33 +00: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 12:58:55 -07:00
|
|
|
state.Put("error", err)
|
2013-07-30 15:30:53 -07:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-07-30 16:41:29 -07:00
|
|
|
|
|
|
|
s.files = append(s.files, chrootPath)
|
2013-07-30 15:30:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-31 12:58:55 -07:00
|
|
|
state.Put("copy_files_cleanup", s)
|
2013-07-30 15:30:53 -07:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-08-31 12:58:55 -07:00
|
|
|
func (s *StepCopyFiles) Cleanup(state multistep.StateBag) {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-07-30 16:41:29 -07:00
|
|
|
if err := s.CleanupFunc(state); err != nil {
|
|
|
|
ui.Error(err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 10:54:53 +00:00
|
|
|
func (s *StepCopyFiles) CleanupFunc(state multistep.StateBag) error {
|
2013-09-30 09:33:57 -07:00
|
|
|
wrappedCommand := state.Get("wrappedCommand").(CommandWrapper)
|
2013-07-30 16:41:29 -07:00
|
|
|
if s.files != nil {
|
|
|
|
for _, file := range s.files {
|
|
|
|
log.Printf("Removing: %s", file)
|
2013-09-30 09:33:57 -07:00
|
|
|
localCmdText, err := wrappedCommand(fmt.Sprintf("rm -f %s", file))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
localCmd := ShellCommand(localCmdText)
|
2013-09-26 18:34:01 -07:00
|
|
|
if err := localCmd.Run(); err != nil {
|
2013-07-30 16:41:29 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s.files = nil
|
|
|
|
return nil
|
|
|
|
}
|