packer-plugin-xenserver/builder/xenserver/common/step_get_vnc_port.go

52 lines
1.3 KiB
Go
Raw Normal View History

package common
import (
2014-12-08 09:34:48 -06:00
"fmt"
2020-09-13 03:21:07 -05:00
"strconv"
"github.com/hashicorp/packer-plugin-sdk/multistep"
"github.com/hashicorp/packer-plugin-sdk/packer"
)
type StepGetVNCPort struct{}
func (self *StepGetVNCPort) Run(state multistep.StateBag) multistep.StepAction {
2014-12-08 09:34:48 -06:00
ui := state.Get("ui").(packer.Ui)
2014-12-08 09:34:48 -06:00
ui.Say("Step: forward the instances VNC port over SSH")
2020-09-13 03:21:07 -05:00
domid := state.Get("domid").(int)
cmd := fmt.Sprintf("xenstore-read /local/domain/%d/console/vnc-port", domid)
remote_vncport, err := ExecuteHostSSHCmd(state, cmd)
2014-12-09 08:02:48 -06:00
if err != nil {
ui.Error(fmt.Sprintf("Unable to get VNC port (is the VM running?): %s", err.Error()))
return multistep.ActionHalt
}
2014-12-08 09:34:48 -06:00
remote_port, err := strconv.ParseUint(remote_vncport, 10, 16)
2014-12-08 09:34:48 -06:00
if err != nil {
ui.Error(fmt.Sprintf("Unable to convert '%s' to an int", remote_vncport))
ui.Error(err.Error())
2014-12-08 09:34:48 -06:00
return multistep.ActionHalt
}
2014-12-08 09:34:48 -06:00
state.Put("instance_vnc_port", uint(remote_port))
2014-12-08 09:34:48 -06:00
return multistep.ActionContinue
}
func (self *StepGetVNCPort) Cleanup(state multistep.StateBag) {
}
func InstanceVNCPort(state multistep.StateBag) (uint, error) {
2014-12-08 09:34:48 -06:00
vncPort := state.Get("instance_vnc_port").(uint)
return vncPort, nil
}
func InstanceVNCIP(state multistep.StateBag) (string, error) {
2014-12-08 09:34:48 -06:00
// The port is in Dom0, so we want to forward from localhost
return "127.0.0.1", nil
}