2013-09-02 23:23:52 -04:00
|
|
|
package qemu
|
|
|
|
|
|
|
|
import (
|
2019-07-02 16:56:28 -04:00
|
|
|
"log"
|
|
|
|
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2013-09-02 23:23:52 -04:00
|
|
|
)
|
|
|
|
|
2019-07-02 16:56:28 -04:00
|
|
|
func commHost(host string) func(multistep.StateBag) (string, error) {
|
|
|
|
return func(state multistep.StateBag) (string, error) {
|
|
|
|
if host != "" {
|
2020-01-30 18:22:22 -05:00
|
|
|
log.Printf("Using host value: %s", host)
|
2019-07-02 16:56:28 -04:00
|
|
|
return host, nil
|
|
|
|
}
|
|
|
|
|
2020-05-03 09:47:03 -04:00
|
|
|
if guestAddress, ok := state.Get("guestAddress").(string); ok {
|
|
|
|
return guestAddress, nil
|
|
|
|
}
|
|
|
|
|
2019-07-02 16:56:28 -04:00
|
|
|
return "127.0.0.1", nil
|
|
|
|
}
|
2015-06-13 19:23:33 -04:00
|
|
|
}
|
|
|
|
|
2019-03-19 09:47:21 -04:00
|
|
|
func commPort(state multistep.StateBag) (int, error) {
|
2020-05-03 09:47:03 -04:00
|
|
|
sshHostPort, ok := state.Get("sshHostPort").(int)
|
|
|
|
if !ok {
|
|
|
|
sshHostPort = 22
|
|
|
|
}
|
2019-03-19 09:47:21 -04:00
|
|
|
return int(sshHostPort), nil
|
2013-09-02 23:23:52 -04:00
|
|
|
}
|