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
2019-06-11 13:41:22 +02:00

131 lines
2.9 KiB
YAML

---
- include_tasks: versioncheck.yml
when: submodules_versioncheck|bool
- name: install the latest libselinux-python package
become: yes
dnf:
name: libselinux-python
state: latest
when:
- ansible_distribution == "Fedora"
- name: install keychain to support ssh agent
become: yes
package:
name: keychain
state: latest
when:
- ansible_os_family != 'RedHat'
- install_keychain|bool
- name: install keychain on centos
become: yes
yum:
name:
- http://packages.psychotic.ninja/7/base/x86_64/RPMS//keychain-2.8.0-3.el7.psychotic.noarch.rpm
- libselinux-python
state: present
when:
- ansible_os_family == 'RedHat'
- install_keychain|bool
- name: Create a global bashrc configuration
become: yes
template:
src: 'templates/bash.bashrc'
dest: '/etc/bash.bashrc'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
- name: Copy bashrc configuration to admin users
become: yes
template:
src: 'templates/bashrc'
dest: '/home/{{ item }}/.bashrc'
owner: '{{ item }}'
group: '{{ item }}'
mode: 'u=rw,g=r,o='
with_items: '{{ admins }}'
when: admins is defined
- name: Copy bashrc configuration to non admin users
become: yes
template:
src: 'templates/bashrc'
dest: '/home/{{ item }}/.bashrc'
owner: '{{ item }}'
group: '{{ item }}'
mode: 'u=rw,g=r,o='
with_items: '{{ accounts }}'
when:
- accounts is defined
- accounts != ['root']
- accounts != 'root'
- name: Copy vimrc configuration to root
become: yes
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: yes
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: Copy vimrc configuration to admin users
become: yes
copy:
src: 'templates/vimrc'
dest: '/home/{{ item }}/.vimrc'
owner: '{{ item }}'
group: '{{ item }}'
mode: 'u=rw,g=r,o='
with_items: "{{ admins }}"
when: admins is defined
- name: delete root .bashrc
become: yes
file:
state: absent
path: "/root/.bashrc"
when: not allow_own_root_bashrc | bool
- name: create .config/ranger/ directory
become: true
file:
path: "/home/{{ item }}/.config/ranger"
state: directory
recurse: yes
owner: "{{ item }}"
group: "{{ item }}"
with_items: "{{ accounts }}"
when:
- 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 }}"
with_items: "{{ accounts }}"
when: ranger_hidden_files | bool