mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-21 12:20:21 -07:00
Docs: fix its vs. it's (#9442)
* Fix its vs. it's. * Improvements from review. Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> * Improve formulations. Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --------- Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
2f82bd8ece
commit
ec585392e5
60 changed files with 88 additions and 88 deletions
|
@ -43,7 +43,7 @@ options:
|
|||
type: str
|
||||
description:
|
||||
- Sets the project which receive the ACL policy.
|
||||
- If unset, it's a system ACL policy.
|
||||
- If unset, it is a system ACL policy.
|
||||
policy:
|
||||
type: str
|
||||
description:
|
||||
|
@ -155,7 +155,7 @@ class RundeckACLManager:
|
|||
if info["status"] == 201:
|
||||
self.module.exit_json(changed=True, before={}, after=self.get_acl())
|
||||
elif info["status"] == 400:
|
||||
self.module.fail_json(msg="Unable to validate acl %s. Please ensure it's a valid ACL" %
|
||||
self.module.fail_json(msg="Unable to validate acl %s. Please ensure it is a valid ACL" %
|
||||
self.module.params["name"])
|
||||
elif info["status"] == 409:
|
||||
self.module.fail_json(msg="ACL %s already exists" % self.module.params["name"])
|
||||
|
@ -179,7 +179,7 @@ class RundeckACLManager:
|
|||
if info["status"] == 200:
|
||||
self.module.exit_json(changed=True, before=facts, after=self.get_acl())
|
||||
elif info["status"] == 400:
|
||||
self.module.fail_json(msg="Unable to validate acl %s. Please ensure it's a valid ACL" %
|
||||
self.module.fail_json(msg="Unable to validate acl %s. Please ensure it is a valid ACL" %
|
||||
self.module.params["name"])
|
||||
elif info["status"] == 404:
|
||||
self.module.fail_json(msg="ACL %s doesn't exists. Cannot update." % self.module.params["name"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue