17 lines
356 B
Go
17 lines
356 B
Go
package common
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
)
|
|
|
|
func CommHost(host string) func(multistep.StateBag) (string, error) {
|
|
return func(state multistep.StateBag) (string, error) {
|
|
return host, nil
|
|
}
|
|
}
|
|
|
|
func SSHPort(state multistep.StateBag) (int, error) {
|
|
sshHostPort := state.Get("sshHostPort").(int)
|
|
return sshHostPort, nil
|
|
}
|