From 97ad69df5ec3a8de0e1997cd583dfd1d2fd7ac3a Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Thu, 9 Apr 2015 17:49:29 +0200 Subject: [PATCH] extlinux now works with gpt on hvm instances --- bootstrapvz/providers/ec2/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bootstrapvz/providers/ec2/__init__.py b/bootstrapvz/providers/ec2/__init__.py index 2d13675..bb14977 100644 --- a/bootstrapvz/providers/ec2/__init__.py +++ b/bootstrapvz/providers/ec2/__init__.py @@ -51,9 +51,6 @@ def validate_manifest(data, validator, error): if virtualization == 'hvm': if backing != 'ebs': error('HVM AMIs currently only work when they are EBS backed', ['volume', 'backing']) - if bootloader == 'extlinux' and partition_type not in ['none', 'msdos']: - error('HVM AMIs booted with extlinux currently work with unpartitioned or msdos partitioned volumes', - ['volume', 'partitions', 'type']) if backing == 's3': if partition_type != 'none':