diff options
| author | boom2 <blizzack@blizzack.com> | 2023-12-14 17:24:25 -0500 |
|---|---|---|
| committer | boom2 <blizzack@blizzack.com> | 2023-12-14 17:24:25 -0500 |
| commit | f30709d7dbe88d82c4df66c476db36cb5c0ce903 (patch) | |
| tree | ca861d7aa3e30c73a4fefeb9186f221cf15a8ff5 /home/.ansible/roles/bash_config/tasks/main.yml~ | |
| parent | d8a7729358a2fd3b911022e45d0197fda3e5da94 (diff) | |
- add "new_host" role for system setup
- no longer use "all" to mention all hosts in playbooks
- update of hosts file to now use localhost as "test"
Diffstat (limited to 'home/.ansible/roles/bash_config/tasks/main.yml~')
| -rw-r--r-- | home/.ansible/roles/bash_config/tasks/main.yml~ | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/home/.ansible/roles/bash_config/tasks/main.yml~ b/home/.ansible/roles/bash_config/tasks/main.yml~ new file mode 100644 index 0000000..28a12c9 --- /dev/null +++ b/home/.ansible/roles/bash_config/tasks/main.yml~ @@ -0,0 +1,21 @@ +--- +- name: copy '.bash_aliases' + ansible.builtin.copy: + src: .bash_aliases + dest: "{{ prefix_dir }}.bash_aliases" + mode: '0644' + tags: ['bash_aliases'] + +- name: copy '.bashrc' file with content + ansible.builtin.copy: + src: .bashrc + dest: "{{ prefix_dir }}.bashrc" + mode: '0644' + tags: ['bashrc'] + +- name: copy '.bash_profile' file with content + ansible.builtin.copy: + src: .bash_profile + dest: "{{ prefix_dir }}.bash_profile" + mode: '0644' + tags: ['bash_profile'] |
