6 lines
205 B
YAML
Raw Normal View History

2025-02-20 14:22:08 +01:00
- name: create .bashrc
template:
src: "bashrc.j2"
dest: "{{ '/root/.bashrc' if user_name == 'root' else '/home/' ~ user_name ~ '/.bashrc' }}"
2025-02-20 14:23:16 +01:00
owner: "{{user_name}}"
group: "{{user_name}}"