2016-04-14 20:29:27 -04:00
|
|
|
package triton
|
|
|
|
|
|
|
|
import (
|
2019-07-02 16:56:28 -04:00
|
|
|
"log"
|
|
|
|
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2016-04-14 20:29:27 -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 != "" {
|
|
|
|
log.Printf("Using ssh_host value: %s", host)
|
|
|
|
return host, nil
|
|
|
|
}
|
2016-04-14 20:29:27 -04:00
|
|
|
|
2019-07-02 16:56:28 -04:00
|
|
|
driver := state.Get("driver").(Driver)
|
|
|
|
machineID := state.Get("machine").(string)
|
2016-04-14 20:29:27 -04:00
|
|
|
|
2019-07-02 16:56:28 -04:00
|
|
|
machine, err := driver.GetMachineIP(machineID)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return machine, nil
|
|
|
|
}
|
2016-04-14 20:29:27 -04:00
|
|
|
}
|