Explicit permissions
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
@ -11,20 +11,27 @@
|
||||
register: pkg_result
|
||||
retries: 3
|
||||
until: pkg_result is succeeded
|
||||
become: yes
|
||||
|
||||
- name: Create multimedia folder hierarchy
|
||||
file:
|
||||
path: '.config/{{ item }}'
|
||||
state: directory
|
||||
owner: '{{ user.name }}'
|
||||
group: '{{ user.name }}'
|
||||
mode: 0700
|
||||
with_items :
|
||||
- 'mpv/'
|
||||
- 'zathura/'
|
||||
become_user: '{{ user.name }}'
|
||||
|
||||
- name: Copy multimedia configuration files
|
||||
template:
|
||||
src: '{{ item.src }}'
|
||||
dest: '.config/{{ item.dest }}'
|
||||
owner: '{{ user.name }}'
|
||||
group: '{{ user.name }}'
|
||||
mode: 0644
|
||||
with_items:
|
||||
- { src: 'zathurarc.j2', dest: 'zathura/zathurarc' }
|
||||
- { src: 'mpv.conf.j2', dest: 'mpv/mpv.conf' }
|
||||
become_user: '{{ user.name }}'
|
||||
|
Reference in New Issue
Block a user