Fix glance_client module

Wrong variable name.
This commit is contained in:
Yair Fried 2016-01-25 14:49:37 +02:00 committed by Matt Clay
parent 61ac748bad
commit 63a0b99b6a

View file

@ -238,6 +238,12 @@ def main():
argument_spec=argument_spec, argument_spec=argument_spec,
mutually_exclusive = [['file','copy_from']], mutually_exclusive = [['file','copy_from']],
) )
if not HAS_GLANCECLIENT:
module.fail_json(msg='python-glanceclient is required for this module')
if not HAS_KEYSTONECLIENT:
module.fail_json(msg='python-keystoneclient is required for this module')
if module.params['state'] == 'present': if module.params['state'] == 'present':
if not module.params['file'] and not module.params['copy_from']: if not module.params['file'] and not module.params['copy_from']:
module.fail_json(msg="Either file or copy_from variable should be set to create the image") module.fail_json(msg="Either file or copy_from variable should be set to create the image")