github.com/mitchellh/packer@v1.3.2/builder/null/ssh.go (about)

     1  package null
     2  
     3  import (
     4  	"github.com/hashicorp/packer/helper/multistep"
     5  )
     6  
     7  func CommHost(host string) func(multistep.StateBag) (string, error) {
     8  	return func(state multistep.StateBag) (string, error) {
     9  		return host, nil
    10  	}
    11  }