mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
(cherry picked from commit 403c4f7477
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
43dc6ba533
commit
c5ff49db56
27 changed files with 110 additions and 110 deletions
|
@ -48,7 +48,7 @@ options:
|
|||
description:
|
||||
- Apply permissions to everyone.
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
permissions:
|
||||
description:
|
||||
- The list of permission(s) to delegate (required if C(state) is C(present)).
|
||||
|
@ -68,7 +68,7 @@ options:
|
|||
description:
|
||||
- Unallow permissions recursively (ignored when C(state) is C(present)).
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
author:
|
||||
- Nate Coraor (@natefoo)
|
||||
'''
|
||||
|
@ -84,7 +84,7 @@ EXAMPLES = r'''
|
|||
community.general.zfs_delegate_admin:
|
||||
name: rpool/myvol
|
||||
groups: backup
|
||||
everyone: yes
|
||||
everyone: true
|
||||
permissions: send
|
||||
|
||||
- name: Grant `zfs send,receive` to users `foo` and `bar` with local scope only
|
||||
|
@ -92,12 +92,12 @@ EXAMPLES = r'''
|
|||
name: rpool/myfs
|
||||
users: foo,bar
|
||||
permissions: send,receive
|
||||
local: yes
|
||||
local: true
|
||||
|
||||
- name: Revoke all permissions from everyone (permissions specifically assigned to users and groups remain)
|
||||
community.general.zfs_delegate_admin:
|
||||
name: rpool/myfs
|
||||
everyone: yes
|
||||
everyone: true
|
||||
state: absent
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue