packer-cn/builder/lxc/step_provision.go

40 lines
1.0 KiB
Go
Raw Normal View History

2015-12-22 09:56:33 -05:00
package lxc
import (
"context"
"log"
"github.com/hashicorp/packer/helper/multistep"
2017-09-05 18:23:22 -04:00
"github.com/hashicorp/packer/packer"
2015-12-22 09:56:33 -05:00
)
// StepProvision provisions the instance within a chroot.
2016-05-25 15:34:51 -04:00
type StepProvision struct{}
2015-12-22 09:56:33 -05:00
func (s *StepProvision) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2015-12-22 09:56:33 -05:00
hook := state.Get("hook").(packer.Hook)
config := state.Get("config").(*Config)
mountPath := state.Get("mount_path").(string)
ui := state.Get("ui").(packer.Ui)
wrappedCommand := state.Get("wrappedCommand").(CommandWrapper)
// Create our communicator
comm := &LxcAttachCommunicator{
ContainerName: config.ContainerName,
AttachOptions: config.AttachOptions,
2015-12-22 09:56:33 -05:00
RootFs: mountPath,
CmdWrapper: wrappedCommand,
}
// Provision
log.Println("Running the provision hook")
if err := hook.Run(packer.HookProvision, ui, comm, nil); err != nil {
state.Put("error", err)
return multistep.ActionHalt
}
return multistep.ActionContinue
}
func (s *StepProvision) Cleanup(state multistep.StateBag) {}