Commit af477a59 authored by Bob Potter's avatar Bob Potter

Update builder-amazon-chroot to work with WaitForState changes in 7c56148f

parent 6face65e
...@@ -60,7 +60,8 @@ func (s *StepAttachVolume) Run(state multistep.StateBag) multistep.StepAction { ...@@ -60,7 +60,8 @@ func (s *StepAttachVolume) Run(state multistep.StateBag) multistep.StepAction {
return nil, "", errors.New("No attachments on volume.") return nil, "", errors.New("No attachments on volume.")
} }
return nil, resp.Volumes[0].Attachments[0].Status, nil a := resp.Volumes[0].Attachments[0]
return a, a.Status, nil
}, },
} }
...@@ -111,12 +112,12 @@ func (s *StepAttachVolume) CleanupFunc(state multistep.StateBag) error { ...@@ -111,12 +112,12 @@ func (s *StepAttachVolume) CleanupFunc(state multistep.StateBag) error {
return nil, "", err return nil, "", err
} }
state := "detached" v := resp.Volumes[0]
if len(resp.Volumes[0].Attachments) > 0 { if len(v.Attachments) > 0 {
state = resp.Volumes[0].Attachments[0].Status return v, v.Attachments[0].Status, nil
} else {
return v, "detached", nil
} }
return nil, state, nil
}, },
} }
......
...@@ -75,7 +75,8 @@ func (s *StepCreateVolume) Run(state multistep.StateBag) multistep.StepAction { ...@@ -75,7 +75,8 @@ func (s *StepCreateVolume) Run(state multistep.StateBag) multistep.StepAction {
return nil, "", err return nil, "", err
} }
return nil, resp.Volumes[0].Status, nil v := resp.Volumes[0]
return v, v.Status, nil
}, },
} }
......
...@@ -51,7 +51,8 @@ func (s *StepSnapshot) Run(state multistep.StateBag) multistep.StepAction { ...@@ -51,7 +51,8 @@ func (s *StepSnapshot) Run(state multistep.StateBag) multistep.StepAction {
return nil, "", errors.New("No snapshots found.") return nil, "", errors.New("No snapshots found.")
} }
return nil, resp.Snapshots[0].Status, nil s := resp.Snapshots[0]
return s, s.Status, nil
}, },
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment