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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (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 index 28a12c9..60a8984 100644 --- a/home/.ansible/roles/bash_config/tasks/main.yml +++ b/home/.ansible/roles/bash_config/tasks/main.yml @@ -2,20 +2,20 @@ - name: copy '.bash_aliases' ansible.builtin.copy: src: .bash_aliases - dest: "{{ prefix_dir }}.bash_aliases" + dest: "{{ home_dir }}/.bash_aliases" mode: '0644' tags: ['bash_aliases'] - name: copy '.bashrc' file with content ansible.builtin.copy: src: .bashrc - dest: "{{ prefix_dir }}.bashrc" + dest: "{{ home_dir }}/.bashrc" mode: '0644' tags: ['bashrc'] - name: copy '.bash_profile' file with content ansible.builtin.copy: src: .bash_profile - dest: "{{ prefix_dir }}.bash_profile" + dest: "{{ home_dir }}/.bash_profile" mode: '0644' tags: ['bash_profile'] -- cgit v1.2.3-54-g00ecf