1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_collection_users.git synced 2024-08-16 10:29:50 +02:00
ansible_collection_users/roles/dotfiles/tasks/bashrc.yml
2024-03-26 14:22:08 +01:00

9 lines
212 B
YAML

---
- name: Create global bashrc configuration
become: true
ansible.builtin.template:
src: 'templates/bash.bashrc.j2'
dest: '/etc/bash.bashrc'
owner: root
group: root
mode: 'u=rw,g=r,o=r'