From bcf9eaebc9f40d55e2d76378529ce18a1e8356e5 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Fri, 19 Jun 2026 19:06:55 -0400 Subject: [PATCH] removed unnecessary copy task for a source file in managed node --- roles/init-server/tasks/contingent/pkg/neovim.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/roles/init-server/tasks/contingent/pkg/neovim.yml b/roles/init-server/tasks/contingent/pkg/neovim.yml index 90a91ae..83c515e 100644 --- a/roles/init-server/tasks/contingent/pkg/neovim.yml +++ b/roles/init-server/tasks/contingent/pkg/neovim.yml @@ -9,17 +9,6 @@ ansible.builtin.shell: cmd: "echo {{ ansible_user }}" register: current_user -- name: Copy system ViM configuration to home directory - become: true - ansible.builtin.copy: - src: /root/.vimrc - remote_src: true - dest: "{{ ansible_user_home.stdout }}/.vimrc" - owner: "{{ ansible_user }}" - group: "{{ ansible_user }}" - mode: "644" - force: true - backup: true - name: Creating directory tree for NeoViM configuration files ansible.builtin.file: path: "{{ ansible_user_home.stdout }}/.config/nvim"