mirror of
https://github.com/roles-ansible/ansible_role_dotfiles.git
synced 2024-08-16 16:09:49 +02:00
31 lines
781 B
YAML
31 lines
781 B
YAML
---
|
|
- name: Create .config/ranger/ directory
|
|
become: true
|
|
ansible.builtin.file:
|
|
path: "/home/{{ item }}/.config/ranger"
|
|
state: directory
|
|
owner: "{{ item }}"
|
|
group: "{{ item }}"
|
|
mode: '0644'
|
|
recurse: true
|
|
loop: "{{ accounts }}"
|
|
when:
|
|
- dotfiles__ranger_hidden_files | bool
|
|
- accounts is defined
|
|
- accounts != ['root']
|
|
- accounts != 'root'
|
|
|
|
- name: Create .config/ranger/rc.conf file
|
|
become: true
|
|
ansible.builtin.template:
|
|
src: templates/ranger_rc.conf.j2
|
|
dest: "/home/{{ item }}/.config/ranger/rc.conf"
|
|
owner: "{{ item }}"
|
|
group: "{{ item }}"
|
|
mode: '0644'
|
|
loop: "{{ accounts }}"
|
|
when:
|
|
- dotfiles__ranger_hidden_files | bool
|
|
- accounts is defined
|
|
- accounts != ['root']
|
|
- accounts != 'root'
|