2014-06-04 17:58:11 -04:00
|
|
|
package chroot
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2015-04-05 17:58:48 -04:00
|
|
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
2014-06-04 17:58:11 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StepCheckRootDevice makes sure the root device on the AMI is EBS-backed.
|
|
|
|
type StepCheckRootDevice struct{}
|
|
|
|
|
|
|
|
func (s *StepCheckRootDevice) Run(state multistep.StateBag) multistep.StepAction {
|
2014-07-21 18:28:47 -04:00
|
|
|
image := state.Get("source_image").(*ec2.Image)
|
2014-06-04 17:58:11 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
ui.Say("Checking the root device on source AMI...")
|
|
|
|
|
|
|
|
// It must be EBS-backed otherwise the build won't work
|
2015-04-05 17:58:48 -04:00
|
|
|
if *image.RootDeviceType != "ebs" {
|
2014-06-04 17:58:11 -04:00
|
|
|
err := fmt.Errorf("The root device of the source AMI must be EBS-backed.")
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepCheckRootDevice) Cleanup(multistep.StateBag) {}
|