From ddccb5072bdac8bf0edc96b456af99e730925bfd Mon Sep 17 00:00:00 2001 From: retrack Date: Fri, 5 Sep 2014 09:56:48 +0200 Subject: [PATCH 1/2] exoscale builder --- build_library/vm_image_util.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build_library/vm_image_util.sh b/build_library/vm_image_util.sh index f50c20defa..79801078c4 100644 --- a/build_library/vm_image_util.sh +++ b/build_library/vm_image_util.sh @@ -26,6 +26,7 @@ VALID_IMG_TYPES=( cloudstack cloudstack_vhd digitalocean + exoscale ) # Set at runtime to one of the above types @@ -178,6 +179,10 @@ IMG_cloudstack_vhd_OEM_PACKAGE=oem-cloudstack ## digitalocean IMG_digitalocean_OEM_PACKAGE=oem-digitalocean +## exoscale +IMG_exoscale_BOOT_KERNEL=0 +IMG_exoscale_DISK_FORMAT=qcow2 +IMG_exoscale_OEM_PACKAGE=oem-exoscale ########################################################### # Validate and set the vm type to use for the rest of the functions From b9dc44da2ecc0130f53d5864ff4484fdbc1748df Mon Sep 17 00:00:00 2001 From: Antoine Coetsier Date: Mon, 8 Sep 2014 23:23:13 +0200 Subject: [PATCH 2/2] remove boot_kernel option for KVM in exoscale --- build_library/vm_image_util.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_library/vm_image_util.sh b/build_library/vm_image_util.sh index 79801078c4..16c586a212 100644 --- a/build_library/vm_image_util.sh +++ b/build_library/vm_image_util.sh @@ -180,7 +180,6 @@ IMG_cloudstack_vhd_OEM_PACKAGE=oem-cloudstack IMG_digitalocean_OEM_PACKAGE=oem-digitalocean ## exoscale -IMG_exoscale_BOOT_KERNEL=0 IMG_exoscale_DISK_FORMAT=qcow2 IMG_exoscale_OEM_PACKAGE=oem-exoscale ###########################################################