--- - 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 owner: "{{ item }}" group: "{{ item }}" recurse: true 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'