builder/amazon/chroot: verify we're on an EC2 instance
This commit is contained in:
parent
b329323bb2
commit
c189c7ed12
|
@ -1,15 +1,32 @@
|
||||||
package chroot
|
package chroot
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/mitchellh/goamz/aws"
|
||||||
"github.com/mitchellh/multistep"
|
"github.com/mitchellh/multistep"
|
||||||
"github.com/mitchellh/packer/packer"
|
"github.com/mitchellh/packer/packer"
|
||||||
|
"log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// StepCheckEC2 verifies that this builder is running on an EC2 instance.
|
||||||
type StepCheckEC2 struct{}
|
type StepCheckEC2 struct{}
|
||||||
|
|
||||||
func (s *StepCheckEC2) Run(state map[string]interface{}) multistep.StepAction {
|
func (s *StepCheckEC2) Run(state map[string]interface{}) multistep.StepAction {
|
||||||
ui := state["ui"].(packer.Ui)
|
ui := state["ui"].(packer.Ui)
|
||||||
|
|
||||||
ui.Say("Verifying we're on an EC2 instance...")
|
ui.Say("Verifying we're on an EC2 instance...")
|
||||||
|
id, err := aws.GetMetaData("instance-id")
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Error: %s", err)
|
||||||
|
err := fmt.Errorf(
|
||||||
|
"Error retrieving the ID of the instance Packer is running on.\n" +
|
||||||
|
"Please verify Packer is running on a proper AWS EC2 instance.")
|
||||||
|
state["error"] = err
|
||||||
|
ui.Error(err.Error())
|
||||||
|
return multistep.ActionHalt
|
||||||
|
}
|
||||||
|
log.Printf("Instance ID: %s", string(id))
|
||||||
|
|
||||||
return multistep.ActionContinue
|
return multistep.ActionContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue