2019-06-13 03:16:49 -04:00
|
|
|
package uhost
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-06-19 09:32:33 -04:00
|
|
|
"fmt"
|
2019-06-13 03:16:49 -04:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stepCheckSourceImageId struct {
|
|
|
|
SourceUHostImageId string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepCheckSourceImageId) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
client := state.Get("client").(*UCloudClient)
|
|
|
|
|
|
|
|
ui.Say("Querying source image id...")
|
|
|
|
|
|
|
|
imageSet, err := client.DescribeImageById(s.SourceUHostImageId)
|
|
|
|
if err != nil {
|
|
|
|
if isNotFoundError(err) {
|
|
|
|
return halt(state, err, "")
|
|
|
|
}
|
2019-06-19 09:32:33 -04:00
|
|
|
return halt(state, err, fmt.Sprintf("Error on querying specified source_image_id %q", s.SourceUHostImageId))
|
2019-06-13 03:16:49 -04:00
|
|
|
}
|
|
|
|
|
2019-06-13 08:17:08 -04:00
|
|
|
if imageSet.OsType == osTypeWindows {
|
2019-06-28 00:01:26 -04:00
|
|
|
return halt(state, err, "The ucloud-uhost builder does not support Windows images yet")
|
2019-06-13 03:16:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
state.Put("source_image", imageSet)
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepCheckSourceImageId) Cleanup(multistep.StateBag) {}
|