summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/cloud/rackspace/rax.py
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2015-02-16 15:31:28 -0600
committerMatt Clay <matt@mystile.com>2016-12-08 11:22:43 -0500
commitcf50526cb543a8bcece0f0054f63ee68a676d43b (patch)
tree5e4423b95e6ff6c5339a1988ea4c5105a34c620a /lib/ansible/modules/cloud/rackspace/rax.py
parentd013652dc7df76a9917c0ce4694a8062248b476f (diff)
downloadansible-cf50526cb543a8bcece0f0054f63ee68a676d43b.tar.gz
Don't hardcode minimum for boot_volume_size
Diffstat (limited to 'lib/ansible/modules/cloud/rackspace/rax.py')
-rw-r--r--lib/ansible/modules/cloud/rackspace/rax.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/ansible/modules/cloud/rackspace/rax.py b/lib/ansible/modules/cloud/rackspace/rax.py
index 3f6f7f334b..1515865713 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',