|
@@ -0,0 +1,13 @@
|
|
|
|
|
+---
|
|
|
|
|
+
|
|
|
|
|
+- name: Download .bashrc file
|
|
|
|
|
+ ansible.builtin.get_url:
|
|
|
|
|
+ url: "{{ bashrc }}"
|
|
|
|
|
+ dest: "{{ user_directory }}/.bashrc"
|
|
|
|
|
+ force: true
|
|
|
|
|
+
|
|
|
|
|
+- name: Download .bashrc help file
|
|
|
|
|
+ ansible.builtin.get_url:
|
|
|
|
|
+ url: "{{ bashrc_help }}"
|
|
|
|
|
+ dest: "{{ user_directory }}/.bashrc_help"
|
|
|
|
|
+ force: true
|