create-amis.sh: Use pv-grub-hd0_1.05

This commit is contained in:
Eelco Dolstra 2017-04-03 16:55:05 +02:00
parent c34db6e419
commit e6faf2a4e6
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -206,7 +206,7 @@ for type in $types; do
# Register the AMI.
if [ $type = pv ]; then
kernel=$(aws ec2 describe-images --owner amazon --filters "Name=name,Values=pv-grub-hd0_1.04-$arch.gz" | jq -r .Images[0].ImageId)
kernel=$(aws ec2 describe-images --owner amazon --filters "Name=name,Values=pv-grub-hd0_1.05-$arch.gz" | jq -r .Images[0].ImageId)
if [ "$kernel" = null ]; then break; fi
echo "using PV-GRUB kernel $kernel"
extraFlags+=" --virtualization-type paravirtual --kernel $kernel"