2018-01-24 06:04:39 -05:00
|
|
|
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
|
|
|
)
|
|
|
|
|
2018-12-23 12:16:49 -05: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
|
|
|
}
|