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

51 lines
1.1 KiB
YAML
Raw Normal View History

2018-11-15 10:26:52 +01:00
---
2019-01-19 00:15:14 +01:00
- debug: var=bash
2018-11-15 10:26:52 +01:00
- name: install the latest libselinux-python package
2019-02-18 22:13:07 +01:00
become: yes
2018-11-15 10:26:52 +01:00
dnf:
name: libselinux-python
state: latest
when: ansible_distribution == "Fedora"
- name: Create a global bashrc configuration
2019-02-18 22:13:07 +01:00
become: yes
2019-01-13 20:06:29 +01:00
template:
2019-01-10 13:32:49 +01:00
src: 'templates/bash.bashrc'
2018-11-15 10:26:52 +01:00
dest: '/etc/bash.bashrc'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
- name: Copy bashrc configuration to admin users
2019-02-18 22:13:07 +01:00
become: yes
2018-11-15 15:04:18 +01:00
template:
2019-01-10 13:32:49 +01:00
src: 'templates/bashrc'
2018-11-15 10:26:52 +01:00
dest: '/home/{{ item }}/.bashrc'
owner: '{{ item }}'
2019-01-13 17:30:59 +01:00
group: '{{ item }}'
2018-11-15 10:26:52 +01:00
mode: 'u=rw,g=r,o='
with_items: '{{ admins }}'
2019-02-01 14:59:07 +01:00
when: admins is defined
2018-11-15 10:26:52 +01:00
- name: Copy vimrc configuration to root
2019-02-18 22:13:07 +01:00
become: yes
2018-11-15 10:26:52 +01:00
copy:
2019-01-10 13:32:49 +01:00
src: 'templates/vimrc'
2018-11-15 10:26:52 +01:00
dest: '/root/.vimrc'
owner: root
group: root
mode: 'u=rw,g=r,o='
- name: Copy vimrc configuration to admin users
2019-02-18 22:13:07 +01:00
become: yes
2018-11-15 10:26:52 +01:00
copy:
2019-01-10 13:32:49 +01:00
src: 'templates/vimrc'
2018-11-15 10:26:52 +01:00
dest: '/home/{{ item }}/.vimrc'
owner: '{{ item }}'
2019-01-13 17:30:59 +01:00
group: '{{ item }}'
2018-11-15 10:26:52 +01:00
mode: 'u=rw,g=r,o='
with_items: "{{ admins }}"
2019-02-01 14:59:07 +01:00
when: admins is defined
2018-11-15 10:26:52 +01:00