Allow the use of a specific group in the acls tasks.
This commit is contained in:
parent
18a579271c
commit
628adddb78
|
@ -45,22 +45,22 @@
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
- name: Set the read/write/access permissions on the users additional data dirs
|
- name: Set the read/write/access permissions on the users additional data dirs
|
||||||
acl: name={{ item.name }} entity={{ common_users_group }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present recursive=yes
|
acl: name={{ item.name }} entity={{ item.acl_group | default(common_users_group) }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present recursive=yes
|
||||||
with_items: '{{ additional_data_directories }}'
|
with_items: '{{ additional_data_directories }}'
|
||||||
|
|
||||||
- name: Set the default read/write/access permissions on the users additional data dirs
|
- name: Set the default read/write/access permissions on the users additional data dirs
|
||||||
acl: name={{ item.name }} entity={{ common_users_group }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present default=yes recursive=yes
|
acl: name={{ item.name }} entity={{ item.acl_group | default(common_users_group) }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present default=yes recursive=yes
|
||||||
with_items: '{{ additional_data_directories }}'
|
with_items: '{{ additional_data_directories }}'
|
||||||
|
|
||||||
tags: [ 'users_acl' ]
|
tags: [ 'users_acl' ]
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
- name: Set the read/write/access permissions on the additional data dirs
|
- name: Set the read/write/access permissions on the additional data dirs
|
||||||
acl: name={{ item.name }} entity={{ common_users_group }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present recursive=yes
|
acl: name={{ item.name }} entity={{ item.acl_group | default(common_users_group) }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present recursive=yes
|
||||||
with_items: '{{ additional_data_directories_adjunct }}'
|
with_items: '{{ additional_data_directories_adjunct }}'
|
||||||
|
|
||||||
- name: Set the default read/write/access permissions on the additional data dirs
|
- name: Set the default read/write/access permissions on the additional data dirs
|
||||||
acl: name={{ item.name }} entity={{ common_users_group }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present default=yes recursive=yes
|
acl: name={{ item.name }} entity={{ item.acl_group | default(common_users_group) }} etype=group permissions={{ item.aclperms | default('rwX') }} state=present default=yes recursive=yes
|
||||||
with_items: '{{ additional_data_directories_adjunct }}'
|
with_items: '{{ additional_data_directories_adjunct }}'
|
||||||
|
|
||||||
tags: [ 'users_acl' ]
|
tags: [ 'users_acl' ]
|
||||||
|
|
Loading…
Reference in New Issue