From 75840278908c214e4ee2053c9bdba36190c16a1e Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Thu, 18 Jun 2026 19:16:26 -0400 Subject: [PATCH] moved VIM and Crowdsec setup handler listener, former due to now being userspace package group installation, latter due to needing to precede headscale handler tasks --- roles/init-server/handlers/core.yml | 6 +++--- roles/init-server/handlers/userspace.yml | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/roles/init-server/handlers/core.yml b/roles/init-server/handlers/core.yml index c7d180e..ea172f5 100644 --- a/roles/init-server/handlers/core.yml +++ b/roles/init-server/handlers/core.yml @@ -5,10 +5,10 @@ ansible.builtin.debug: msg: "No post-installaton or additional installation steps needed--continuing..." listen: default -- name: Setting up ViM +- name: Setting up Crowdsec ansible.builtin.include_tasks: - file: tasks/contingent/pkg/vim.yml - listen: vim + file: tasks/contingent/pkg/crowdsec.yml + listen: crowdsec - name: Setting up Headscale ansible.builtin.include_tasks: file: tasks/contingent/pkg/headscale.yml diff --git a/roles/init-server/handlers/userspace.yml b/roles/init-server/handlers/userspace.yml index d810b03..53fcea1 100644 --- a/roles/init-server/handlers/userspace.yml +++ b/roles/init-server/handlers/userspace.yml @@ -5,6 +5,10 @@ ansible.builtin.debug: msg: "No post-installaton or additional installation steps needed--continuing..." listen: default +- name: Setting up ViM + ansible.builtin.include_tasks: + file: tasks/contingent/pkg/vim.yml + listen: vim - name: Settng up NeoViM ansible.builtin.include_tasks: file: tasks/contingent/pkg/neovim.yml