mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-22 12:29:39 +01:00
13 lines
436 B
YAML
13 lines
436 B
YAML
- name: create .bashrc
|
|
template:
|
|
src: "bashrc.j2"
|
|
dest: "{{ '/root/.bashrc' if user_name == 'root' else '/home/' ~ user_name ~ '/.bashrc' }}"
|
|
owner: "{{user_name}}"
|
|
group: "{{user_name}}"
|
|
|
|
- name: create .bash_profile
|
|
template:
|
|
src: "bash_profile.j2"
|
|
dest: "{{ '/root/.bash_profile' if user_name == 'root' else '/home/' ~ user_name ~ '/.bash_profile' }}"
|
|
owner: "{{user_name}}"
|
|
group: "{{user_name}}" |