From fc959043276e0a99bc0560e5d450f6275a6d5f14 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Tue, 16 Jun 2026 14:55:06 -0400 Subject: [PATCH] added a default handler that performs a default action for software installation if none needed, as looped installations nonetheless will attempt to notify one --- roles/init-server/handlers/userspace.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/init-server/handlers/userspace.yml b/roles/init-server/handlers/userspace.yml index b002893..d810b03 100644 --- a/roles/init-server/handlers/userspace.yml +++ b/roles/init-server/handlers/userspace.yml @@ -1,6 +1,10 @@ # SPDX-License-Identifier: MIT-0 --- # handlers file for roles/init-vps +- name: Skipping to next installaton + ansible.builtin.debug: + msg: "No post-installaton or additional installation steps needed--continuing..." + listen: default - name: Settng up NeoViM ansible.builtin.include_tasks: file: tasks/contingent/pkg/neovim.yml