packer-cn/builder/profitbricks/builder.go

71 lines
1.5 KiB
Go
Raw Normal View History

2016-06-28 22:35:41 -04:00
package profitbricks
import (
"fmt"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/packer"
2016-06-28 22:35:41 -04:00
"github.com/mitchellh/multistep"
"log"
)
const BuilderId = "packer.profitbricks"
type Builder struct {
config *Config
runner multistep.Runner
}
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
c, warnings, errs := NewConfig(raws...)
if errs != nil {
return warnings, errs
}
b.config = c
return warnings, nil
}
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
2016-11-15 18:17:30 -05:00
state := new(multistep.BasicStateBag)
2016-06-28 22:35:41 -04:00
2016-11-15 18:17:30 -05:00
state.Put("config", b.config)
state.Put("hook", hook)
state.Put("ui", ui)
2016-06-28 22:35:41 -04:00
steps := []multistep.Step{
&StepCreateSSHKey{
Debug: b.config.PackerDebug,
2016-07-07 04:28:46 -04:00
DebugKeyPath: fmt.Sprintf("pb_%s", b.config.SnapshotName),
2016-06-28 22:35:41 -04:00
},
new(stepCreateServer),
&communicator.StepConnect{
Config: &b.config.Comm,
Host: commHost,
SSHConfig: sshConfig,
},
&common.StepProvision{},
new(stepTakeSnapshot),
}
config := state.Get("config").(*Config)
2016-06-28 22:35:41 -04:00
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
2016-06-28 22:35:41 -04:00
b.runner.Run(state)
if rawErr, ok := state.GetOk("error"); ok {
return nil, rawErr.(error)
}
artifact := &Artifact{
snapshotData: config.SnapshotName,
2016-06-28 22:35:41 -04:00
}
return artifact, nil
}
func (b *Builder) Cancel() {
if b.runner != nil {
log.Println("Cancelling the step runner...")
b.runner.Cancel()
}
}