2013-12-22 12:08:09 -05:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2013-12-22 12:08:09 -05:00
|
|
|
)
|
|
|
|
|
2016-08-24 12:30:26 -04:00
|
|
|
func CommHost(host string) func(multistep.StateBag) (string, error) {
|
|
|
|
return func(state multistep.StateBag) (string, error) {
|
|
|
|
return host, nil
|
|
|
|
}
|
2015-06-13 19:23:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func SSHPort(state multistep.StateBag) (int, error) {
|
2015-06-21 22:56:55 -04:00
|
|
|
sshHostPort := state.Get("sshHostPort").(int)
|
2017-03-28 21:47:10 -04:00
|
|
|
return sshHostPort, nil
|
2013-12-22 12:08:09 -05:00
|
|
|
}
|