2.3bug25396 2 (#25486)

Don't fail when creating a Foreman organization fixes(#25299)
pull/25506/head
John R Barker 8 years ago committed by GitHub
parent 9aa1a2b871
commit b6e4266aa5

@ -15,6 +15,7 @@ Ansible Changes By Release
* Fix so ansilbe-galaxy install --force with unversioned roles will once again
overwrite old versions.
* Fix for RabbitMQ 3.6.7 endpoint return code changing.
* Fix for Foreman organization creation
## 2.3.1 "Ramble On" - 2017-06-01

@ -93,7 +93,7 @@ class NailGun(object):
if len(response) == 1:
return response[0]
else:
self._module.fail_json(msg="No Content View found for %s" % name)
return None
def organization(self, params):
name = params['name']

Loading…
Cancel
Save