mirror of
https://github.com/roles-ansible/ansible_role_dotfiles.git
synced 2024-08-16 16:09:49 +02:00
42 lines
903 B
YAML
42 lines
903 B
YAML
---
|
|
- name: install the latest libselinux-python package
|
|
dnf:
|
|
name: libselinux-python
|
|
state: latest
|
|
when: ansible_distribution == "Fedora"
|
|
|
|
- name: Create a global bashrc configuration
|
|
copy:
|
|
src: 'files/bash.bashrc'
|
|
dest: '/etc/bash.bashrc'
|
|
owner: root
|
|
group: root
|
|
mode: 'u=rw,g=r,o=r'
|
|
|
|
- name: Copy bashrc configuration to admin users
|
|
template:
|
|
src: 'files/bashrc'
|
|
dest: '/home/{{ item }}/.bashrc'
|
|
owner: '{{ item }}'
|
|
group: wheel
|
|
mode: 'u=rw,g=r,o='
|
|
with_items: '{{ admins }}'
|
|
|
|
- name: Copy vimrc configuration to root
|
|
copy:
|
|
src: 'files/vimrc'
|
|
dest: '/root/.vimrc'
|
|
owner: root
|
|
group: root
|
|
mode: 'u=rw,g=r,o='
|
|
|
|
- name: Copy vimrc configuration to admin users
|
|
copy:
|
|
src: 'files/vimrc'
|
|
dest: '/home/{{ item }}/.vimrc'
|
|
owner: '{{ item }}'
|
|
group: wheel
|
|
mode: 'u=rw,g=r,o='
|
|
with_items: "{{ admins }}"
|
|
|
|
|