packer-cn/step_template.go

33 lines
739 B
Go
Raw Normal View History

package main
import (
"github.com/mitchellh/multistep"
"github.com/hashicorp/packer/packer"
"github.com/vmware/govmomi/object"
)
2017-06-27 03:32:59 -04:00
type StepConvertToTemplate struct{
ConvertToTemplate bool
}
2017-06-27 03:32:59 -04:00
func (s *StepConvertToTemplate) Run(state multistep.StateBag) multistep.StepAction {
ui := state.Get("ui").(packer.Ui)
vm := state.Get("vm").(*object.VirtualMachine)
2017-07-01 23:46:38 -04:00
d := state.Get("driver").(Driver)
// Turning into template if needed
2017-06-27 03:32:59 -04:00
if s.ConvertToTemplate {
ui.Say("turning into template...")
2017-07-01 23:46:38 -04:00
err := vm.MarkAsTemplate(d.ctx)
if err != nil {
state.Put("error", err)
return multistep.ActionHalt
}
ui.Say("done")
}
return multistep.ActionContinue
}
2017-06-27 03:32:59 -04:00
func (s *StepConvertToTemplate) Cleanup(state multistep.StateBag) {}