Fix glance_client module
Wrong variable name.
This commit is contained in:
parent
61ac748bad
commit
63a0b99b6a
1 changed files with 6 additions and 0 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue