ansible-common/tasks/bash.yml
Frank Villaro-Dixon ab5435961b add bash & git
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-10-04 22:05:52 +02:00

15 lines
291 B
YAML

- name: Copy bashrc
copy:
src: files/bashrc
dest: /root/.bashrc
owner: root
group: root
mode: 0644
- name: set .bash_profile with var
copy:
content: '[[ -f ~/.bashrc ]] && . ~/.bashrc'
dest: /root/.bash_profile
owner: root
group: root
mode: 0644