From f30709d7dbe88d82c4df66c476db36cb5c0ce903 Mon Sep 17 00:00:00 2001 From: boom2 Date: Thu, 14 Dec 2023 17:24:25 -0500 Subject: - 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" --- home/.ansible/roles/bash_config/tasks/main.yml~ | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 home/.ansible/roles/bash_config/tasks/main.yml~ (limited to 'home/.ansible/roles/bash_config/tasks/main.yml~') 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'] -- cgit v1.2.3-54-g00ecf