Add error handling for specifying 'mode' with insufficiently recent libcloud
This commit is contained in:
parent
4b5a459fc1
commit
afe17834ce
1 changed files with 2 additions and 0 deletions
|
@ -253,6 +253,8 @@ def main():
|
|||
json_output['name'] = name
|
||||
json_output['ipv4_range'] = ipv4_range
|
||||
changed = True
|
||||
except TypeError:
|
||||
module.fail_json(msg="Update libcloud to a more recent version (1.0+) that supports network 'mode' parameter", changed=False)
|
||||
except Exception as e:
|
||||
module.fail_json(msg=unexpected_error_msg(e), changed=False)
|
||||
|
||||
|
|
Loading…
Reference in a new issue