16 lines
305 B
Go
Raw Normal View History

package common
2017-08-25 02:08:08 -03:00
import (
2020-12-17 13:29:25 -08:00
"github.com/hashicorp/packer-plugin-sdk/multistep"
2017-08-25 02:08:08 -03: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 02:08:08 -03:00
}