2013-06-13 13:56:34 -04:00
|
|
|
package digitalocean
|
|
|
|
|
|
|
|
import (
|
2013-06-20 00:00:51 -04:00
|
|
|
"errors"
|
2013-06-17 08:21:15 -04:00
|
|
|
"fmt"
|
2013-06-13 13:56:34 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-06-19 00:54:15 -04:00
|
|
|
"log"
|
2013-06-13 13:56:34 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type stepSnapshot struct{}
|
|
|
|
|
|
|
|
func (s *stepSnapshot) Run(state map[string]interface{}) multistep.StepAction {
|
|
|
|
client := state["client"].(*DigitalOceanClient)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
c := state["config"].(config)
|
|
|
|
dropletId := state["droplet_id"].(uint)
|
|
|
|
|
2013-06-17 08:21:15 -04:00
|
|
|
ui.Say(fmt.Sprintf("Creating snapshot: %v", c.SnapshotName))
|
2013-06-13 13:56:34 -04:00
|
|
|
err := client.CreateSnapshot(dropletId, c.SnapshotName)
|
|
|
|
if err != nil {
|
2013-06-20 00:00:51 -04:00
|
|
|
err := fmt.Errorf("Error creating snapshot: %s", err)
|
|
|
|
state["error"] = err
|
2013-06-13 13:56:34 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.Say("Waiting for snapshot to complete...")
|
2013-06-23 06:51:51 -04:00
|
|
|
err = waitForDropletState("active", dropletId, client, c)
|
2013-06-19 00:54:15 -04:00
|
|
|
if err != nil {
|
2013-06-20 00:00:51 -04:00
|
|
|
err := fmt.Errorf("Error waiting for snapshot to complete: %s", err)
|
|
|
|
state["error"] = err
|
2013-06-19 00:54:15 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-06-13 13:56:34 -04:00
|
|
|
|
2013-06-19 00:54:15 -04:00
|
|
|
log.Printf("Looking up snapshot ID for snapshot: %s", c.SnapshotName)
|
|
|
|
images, err := client.Images()
|
2013-06-13 13:56:34 -04:00
|
|
|
if err != nil {
|
2013-06-20 00:00:51 -04:00
|
|
|
err := fmt.Errorf("Error looking up snapshot ID: %s", err)
|
|
|
|
state["error"] = err
|
2013-06-13 13:56:34 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-06-19 00:54:15 -04:00
|
|
|
var imageId uint
|
|
|
|
for _, image := range images {
|
|
|
|
if image.Name == c.SnapshotName {
|
|
|
|
imageId = image.Id
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if imageId == 0 {
|
2013-06-20 00:00:51 -04:00
|
|
|
err := errors.New("Couldn't find snapshot to get the image ID. Bug?")
|
|
|
|
state["error"] = err
|
|
|
|
ui.Error(err.Error())
|
2013-06-19 00:54:15 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Snapshot image ID: %d", imageId)
|
|
|
|
|
|
|
|
state["snapshot_image_id"] = imageId
|
|
|
|
state["snapshot_name"] = c.SnapshotName
|
|
|
|
|
2013-06-13 13:56:34 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepSnapshot) Cleanup(state map[string]interface{}) {
|
|
|
|
// no cleanup
|
|
|
|
}
|