mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-31 20:04:45 +00:00
Merge pull request #562 from chr15p/typos
fix minor documentation typos in sudo modules
This commit is contained in:
@@ -67,7 +67,7 @@ Example playbook to make sure sudocmd is absent:
|
|||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
# Ensure sudocmd are absent
|
# Ensure sudocmd are absent
|
||||||
- ipahostgroup:
|
- ipasudocmd:
|
||||||
ipaadmin_password: SomeADMINpassword
|
ipaadmin_password: SomeADMINpassword
|
||||||
name: /usr/bin/su
|
name: /usr/bin/su
|
||||||
state: absent
|
state: absent
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ Variable | Description | Required
|
|||||||
`usercategory` \| `usercat` | User category the rule applies to. Choices: ["all", ""] | no
|
`usercategory` \| `usercat` | User category the rule applies to. Choices: ["all", ""] | no
|
||||||
`hostcategory` \| `hostcat` | Host category the rule applies to. Choices: ["all", ""] | no
|
`hostcategory` \| `hostcat` | Host category the rule applies to. Choices: ["all", ""] | no
|
||||||
`cmdcategory` \| `cmdcat` | Command category the rule applies to. Choices: ["all", ""] | no
|
`cmdcategory` \| `cmdcat` | Command category the rule applies to. Choices: ["all", ""] | no
|
||||||
`runasusercategory` \| `rusasusercat` | RunAs User category the rule applies to. Choices: ["all", ""] | no
|
`runasusercategory` \| `runasusercat` | RunAs User category the rule applies to. Choices: ["all", ""] | no
|
||||||
`runasgroupcategory` \| `runasgroupcat` | RunAs Group category the rule applies to. Choices: ["all", ""] | no
|
`runasgroupcategory` \| `runasgroupcat` | RunAs Group category the rule applies to. Choices: ["all", ""] | no
|
||||||
`nomembers` | Suppress processing of membership attributes. (bool) | no
|
`nomembers` | Suppress processing of membership attributes. (bool) | no
|
||||||
`host` | List of host name strings assigned to this sudorule. | no
|
`host` | List of host name strings assigned to this sudorule. | no
|
||||||
@@ -136,8 +136,8 @@ Variable | Description | Required
|
|||||||
`deny_sudocmd` | List of sudocmd name strings assigned to the deny group of this sudorule. | no
|
`deny_sudocmd` | List of sudocmd name strings assigned to the deny group of this sudorule. | no
|
||||||
`allow_sudocmdgroup` | List of sudocmd groups name strings assigned to the allow group of this sudorule. | no
|
`allow_sudocmdgroup` | List of sudocmd groups name strings assigned to the allow group of this sudorule. | no
|
||||||
`deny_sudocmdgroup` | List of sudocmd groups name strings assigned to the deny group of this sudorule. | no
|
`deny_sudocmdgroup` | List of sudocmd groups name strings assigned to the deny group of this sudorule. | no
|
||||||
`sudooption` \| `option` | List of options to the sudorule | no
|
`sudooption` \| `options` | List of options to the sudorule | no
|
||||||
`order` | Integer to order the sudorule | no
|
`order` \| `sudoorder` | Integer to order the sudorule | no
|
||||||
`runasuser` | List of users for Sudo to execute as. | no
|
`runasuser` | List of users for Sudo to execute as. | no
|
||||||
`runasgroup` | List of groups for Sudo to execute as. | no
|
`runasgroup` | List of groups for Sudo to execute as. | no
|
||||||
`action` | Work on sudorule or member level. It can be on of `member` or `sudorule` and defaults to `sudorule`. | no
|
`action` | Work on sudorule or member level. It can be on of `member` or `sudorule` and defaults to `sudorule`. | no
|
||||||
|
|||||||
@@ -56,15 +56,15 @@ author:
|
|||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
# Ensure sudocmd is present
|
# Ensure sudocmd is present
|
||||||
- ipacommand:
|
- ipasudocmd:
|
||||||
ipaadmin_password: SomeADMINpassword
|
ipaadmin_password: SomeADMINpassword
|
||||||
name: su
|
name: /usr/bin/su
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
# Ensure sudocmd is absent
|
# Ensure sudocmd is absent
|
||||||
- ipacommand:
|
- ipasudocmd:
|
||||||
ipaadmin_password: SomeADMINpassword
|
ipaadmin_password: SomeADMINpassword
|
||||||
name: su
|
name: /usr/bin/su
|
||||||
state: absent
|
state: absent
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user