xoxys.users/tasks/bash.yml
Robert Kaussow 9b1612e356
Some checks failed
continuous-integration/drone/push Build is failing
initial commit
2019-11-03 18:19:53 +01:00

19 lines
463 B
YAML

---
- block:
- name: Override default .bashrc for given users
template:
src: etc/bashrc.j2
dest: "{{ item }}"
owner: root
group: root
loop: "{{ users_bash_bashrc_overrides }}"
- name: Setup custom bash profile at '/etc/profile.d/custom.sh'
template:
src: etc/profile.d/custom.sh.j2
dest: /etc/profile.d/custom.sh
owner: root
group: root
become: True
become_user: root