From bef9016deb1894a19ffe1c142542cf65c63401f9 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Thu, 18 Aug 2022 17:01:06 +0100 Subject: [PATCH] Update role names --- roles/home-cli/tasks/shell.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/home-cli/tasks/shell.yml b/roles/home-cli/tasks/shell.yml index 6a300dd..aa61bd3 100644 --- a/roles/home-cli/tasks/shell.yml +++ b/roles/home-cli/tasks/shell.yml @@ -13,19 +13,19 @@ # See the License for the specific language governing permissions and # limitations under the License. -- name: Copy .bashrc +- name: Create $HOME/.bashrc ansible.builtin.copy: src: bashrc dest: "{{ ansible_env.HOME }}/.bashrc" -- name: Copy .bash_profile +- name: Create $HOME/.bash_profile ansible.builtin.copy: src: bash_profile dest: "{{ ansible_env.HOME }}/.bash_profile" -- name: Copy .zshrc +- name: Create $HOME/.zshrc ansible.builtin.copy: src: zshrc dest: "{{ ansible_env.HOME }}/.zshrc" -- name: Copy .zprofile +- name: Create $HOME/.zprofile ansible.builtin.copy: src: zprofile dest: "{{ ansible_env.HOME }}/.zprofile"