1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_dotfiles.git synced 2024-08-16 16:09:49 +02:00
ansible_role_dotfiles/tasks/main.yml
2021-01-25 22:53:28 +01:00

65 lines
1.5 KiB
YAML

---
- include_tasks: versioncheck.yml
when: submodules_versioncheck | bool
- include_tasks: basic-selinux.yml
when:
- dotfiles__install_python_selinux | bool
- ansible_distribution == "Fedora"
- include_tasks: bashrc.yml
when: dotfiles__modify_bashrc | bool
- name: Copy vimrc configuration to root
become: true
copy:
src: 'templates/vimrc'
dest: '/root/.vimrc'
owner: root
group: root
mode: 'u=rw,g=r,o='
- name: Copy vimrc configuration to non admin users
become: true
copy:
src: 'templates/vimrc'
dest: '/home/{{ item }}/.vimrc'
owner: '{{ item }}'
group: '{{ item }}'
mode: 'u=rw,g=r,o='
with_items: "{{ accounts }}"
when:
- accounts is defined
- accounts != ['root']
- accounts != 'root'
- name: create .config/ranger/ directory
become: true
file:
path: "/home/{{ item }}/.config/ranger"
state: directory
recurse: true
owner: "{{ item }}"
group: "{{ item }}"
mode: '0644'
with_items: "{{ accounts }}"
when:
- dotfiles__ranger_hidden_files | bool
- accounts is defined
- accounts != ['root']
- accounts != 'root'
- name: create .config/ranger/rc.conf file
become: true
template:
src: templates/ranger_rc.conf.j2
dest: "/home/{{ item }}/.config/ranger/rc.conf"
owner: "{{ item }}"
group: "{{ item }}"
mode: '0644'
with_items: "{{ accounts }}"
when:
- dotfiles__ranger_hidden_files | bool
- accounts is defined
- accounts != ['root']
- accounts != 'root'