From cf50526cb543a8bcece0f0054f63ee68a676d43b Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 16 Feb 2015 15:31:28 -0600 Subject: [PATCH] Don't hardcode minimum for boot_volume_size --- lib/ansible/modules/cloud/rackspace/rax.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ansible/modules/cloud/rackspace/rax.py b/lib/ansible/modules/cloud/rackspace/rax.py index 3f6f7f334bd..1515865713c 100644 --- a/lib/ansible/modules/cloud/rackspace/rax.py +++ b/lib/ansible/modules/cloud/rackspace/rax.py @@ -701,9 +701,6 @@ def cloudservers(module, state=None, name=None, flavor=None, image=None, 'destination_type': 'volume', } if image: - if boot_volume_size < 100: - module.fail_json(msg='"boot_volume_size" must be greater ' - 'than or equal to 100') mapping.update({ 'uuid': image, 'source_type': 'image',