Explicit permissions
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
@ -13,24 +13,30 @@
|
||||
register: pkg_result
|
||||
retries: 3
|
||||
until: pkg_result is succeeded
|
||||
become: yes
|
||||
when: user.root
|
||||
|
||||
- name: Create directory hierarchy
|
||||
file:
|
||||
path: '.config/{{ item }}'
|
||||
state: directory
|
||||
owner: '{{ user.name }}'
|
||||
group: '{{ user.name }}'
|
||||
mode: 0755
|
||||
with_items:
|
||||
- 'git/'
|
||||
- 'bash/'
|
||||
become_user: "{{ user.name }}"
|
||||
|
||||
- name: Deploying config files
|
||||
template:
|
||||
src: '{{ item.src }}'
|
||||
dest: '{{ item.dest }}'
|
||||
owner: '{{ user.name }}'
|
||||
group: '{{ user.name }}'
|
||||
mode: 0644
|
||||
with_items:
|
||||
- { src: bashrc.j2, dest: .bashrc }
|
||||
- { src: inputrc.j2, dest: .inputrc }
|
||||
- { src: bash_aliases.j2, dest: .config/bash/bash_aliases }
|
||||
- { src: gitconfig.j2, dest: .config/git/config }
|
||||
- { src: tmux.conf.j2, dest: .tmux.conf }
|
||||
become_user: '{{ user.name }}'
|
||||
|
Reference in New Issue
Block a user