mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
More optimation of domain bugs
This commit is contained in:
@@ -3,4 +3,11 @@
|
||||
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}}"
|
Reference in New Issue
Block a user