2013-06-13 12:48:19 -04:00
|
|
|
package digitalocean
|
|
|
|
|
|
|
|
import (
|
2013-06-20 00:00:51 -04:00
|
|
|
"fmt"
|
2013-06-13 12:48:19 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stepDropletInfo struct{}
|
|
|
|
|
|
|
|
func (s *stepDropletInfo) Run(state map[string]interface{}) multistep.StepAction {
|
|
|
|
client := state["client"].(*DigitalOceanClient)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
2013-06-23 06:51:51 -04:00
|
|
|
c := state["config"].(config)
|
2013-06-13 12:48:19 -04:00
|
|
|
dropletId := state["droplet_id"].(uint)
|
|
|
|
|
|
|
|
ui.Say("Waiting for droplet to become active...")
|
|
|
|
|
2013-06-23 06:51:51 -04:00
|
|
|
err := waitForDropletState("active", dropletId, client, c)
|
2013-06-13 13:56:34 -04:00
|
|
|
if err != nil {
|
2013-06-20 00:00:51 -04:00
|
|
|
err := fmt.Errorf("Error waiting for droplet to become active: %s", err)
|
|
|
|
state["error"] = err
|
2013-06-13 13:56:34 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
2013-06-13 12:48:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the IP on the state for later
|
|
|
|
ip, _, err := client.DropletStatus(dropletId)
|
|
|
|
if err != nil {
|
2013-06-20 00:00:51 -04:00
|
|
|
err := fmt.Errorf("Error retrieving droplet ID: %s", err)
|
|
|
|
state["error"] = err
|
2013-06-13 12:48:19 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
state["droplet_ip"] = ip
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepDropletInfo) Cleanup(state map[string]interface{}) {
|
|
|
|
// no cleanup
|
|
|
|
}
|