2014-03-24 06:20:32 -04:00
|
|
|
package null
|
|
|
|
|
|
|
|
import (
|
2020-12-17 16:29:25 -05:00
|
|
|
"github.com/hashicorp/packer-plugin-sdk/multistep"
|
2014-03-24 06:20:32 -04:00
|
|
|
)
|
|
|
|
|
2015-06-13 19:23:33 -04:00
|
|
|
func CommHost(host string) func(multistep.StateBag) (string, error) {
|
2014-03-24 06:20:32 -04:00
|
|
|
return func(state multistep.StateBag) (string, error) {
|
2015-06-13 19:23:33 -04:00
|
|
|
return host, nil
|
2014-03-24 06:20:32 -04:00
|
|
|
}
|
|
|
|
}
|