ansible-host: Make sure that ssh-agent is running for root

This commit is contained in:
Timo Makinen 2020-08-27 18:47:49 +00:00
parent 8ecbc19c75
commit 526a192018

View file

@ -35,3 +35,11 @@
dest: /srv/ansible dest: /srv/ansible
repo: https://git.foo.sh/ansible.git repo: https://git.foo.sh/ansible.git
update: false update: false
- name: add custom .bashrc for root
copy:
dest: /root/.bashrc
src: root-bashrc.sh
owner: root
group: "{{ ansible_wheel }}"
mode: 0600