diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-04-03 09:42:34 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-04-03 09:42:34 -0400 |
commit | 1002d6f1a23ed13bde64d8c4e3f21946d81e702e (patch) | |
tree | 0ff134fadc88f3605a3ef2efccdac6a4cfc0bcb7 /roles/lib_openshift/library | |
parent | 0bac74c346bb5c620bdf1941b40c29ff3083e2b0 (diff) | |
download | openshift-1002d6f1a23ed13bde64d8c4e3f21946d81e702e.tar.gz openshift-1002d6f1a23ed13bde64d8c4e3f21946d81e702e.tar.bz2 openshift-1002d6f1a23ed13bde64d8c4e3f21946d81e702e.tar.xz openshift-1002d6f1a23ed13bde64d8c4e3f21946d81e702e.zip |
Fixed a bug. Ansible requires a msg param when module.fail_json.
Diffstat (limited to 'roles/lib_openshift/library')
-rw-r--r-- | roles/lib_openshift/library/oc_process.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/lib_openshift/library/oc_process.py b/roles/lib_openshift/library/oc_process.py index d487746eb..112d9ab5f 100644 --- a/roles/lib_openshift/library/oc_process.py +++ b/roles/lib_openshift/library/oc_process.py @@ -1545,7 +1545,7 @@ class OCProcess(OpenShiftCLI): if api_rval['returncode'] != 0: return {"failed": True, "msg" : api_rval} - return {"changed" : False, "results": api_rval, "state": "list"} + return {"changed" : False, "results": api_rval, "state": state} elif state == 'present': if check_mode and params['create']: @@ -1567,9 +1567,9 @@ class OCProcess(OpenShiftCLI): return {"failed": True, "msg": api_rval} if params['create']: - return {"changed": True, "results": api_rval, "state": "present"} + return {"changed": True, "results": api_rval, "state": state} - return {"changed": False, "results": api_rval, "state": "present"} + return {"changed": False, "results": api_rval, "state": state} # verify results update = False @@ -1584,13 +1584,13 @@ class OCProcess(OpenShiftCLI): update = True if not update: - return {"changed": update, "results": api_rval, "state": "present"} + return {"changed": update, "results": api_rval, "state": state} for cmd in rval: if cmd['returncode'] != 0: - return {"failed": True, "changed": update, "results": rval, "state": "present"} + return {"failed": True, "changed": update, "msg": rval, "state": state} - return {"changed": update, "results": rval, "state": "present"} + return {"changed": update, "results": rval, "state": state} # -*- -*- -*- End included fragment: class/oc_process.py -*- -*- -*- |