packer-cn/builder/vsphere/common/config_ssh.go

16 lines
301 B
Go
Raw Normal View History

package common
2017-08-25 01:08:08 -04:00
import (
2018-04-25 07:22:38 -04:00
"github.com/hashicorp/packer/helper/multistep"
2017-08-25 01:08:08 -04:00
)
func CommHost(host string) func(multistep.StateBag) (string, error) {
return func(state multistep.StateBag) (string, error) {
if host != "" {
return host, nil
} else {
return state.Get("ip").(string), nil
}
}
2017-08-25 01:08:08 -04:00
}