diff --git a/roles/ansible-host/tasks/main.yml b/roles/ansible-host/tasks/main.yml index 5770b72..72f7a3e 100644 --- a/roles/ansible-host/tasks/main.yml +++ b/roles/ansible-host/tasks/main.yml @@ -35,3 +35,11 @@ dest: /srv/ansible repo: https://git.foo.sh/ansible.git update: false + +- name: add custom .bashrc for root + copy: + dest: /root/.bashrc + src: root-bashrc.sh + owner: root + group: "{{ ansible_wheel }}" + mode: 0600