packer-cn/builder/lxd/builder.go

68 lines
1.5 KiB
Go
Raw Normal View History

2016-05-26 23:21:55 -04:00
package lxd
import (
"context"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/template/interpolate"
2016-05-26 23:21:55 -04:00
)
// The unique ID for this builder
const BuilderId = "lxd"
type wrappedCommandTemplate struct {
Command string
}
type Builder struct {
config *Config
runner multistep.Runner
}
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
c, errs := NewConfig(raws...)
if errs != nil {
return nil, errs
}
b.config = c
return nil, nil
}
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
2016-05-26 23:21:55 -04:00
wrappedCommand := func(command string) (string, error) {
b.config.ctx.Data = &wrappedCommandTemplate{Command: command}
return interpolate.Render(b.config.CommandWrapper, &b.config.ctx)
}
steps := []multistep.Step{
2016-05-30 19:57:26 -04:00
&stepLxdLaunch{},
&StepProvision{},
&stepPublish{},
2016-05-26 23:21:55 -04:00
}
// Setup the state bag
state := new(multistep.BasicStateBag)
state.Put("config", b.config)
state.Put("hook", hook)
state.Put("ui", ui)
state.Put("wrappedCommand", CommandWrapper(wrappedCommand))
// Run
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
b.runner.Run(ctx, state)
2016-05-26 23:21:55 -04:00
// If there was an error, return that
if rawErr, ok := state.GetOk("error"); ok {
return nil, rawErr.(error)
}
artifact := &Artifact{
2016-05-30 21:13:09 -04:00
id: state.Get("imageFingerprint").(string),
2016-05-26 23:21:55 -04:00
}
return artifact, nil
}