From 8a9903eb4ca71928d4b24cd55916c7d4c72589b2 Mon Sep 17 00:00:00 2001 From: patrick Date: Sun, 28 Jun 2026 13:19:58 -0400 Subject: [PATCH] fix(system_setup): update include_tasks references from .yaml to .yml The task files were previously renamed to .yml (commits b2379e5, ce7ec1b) but main.yml's include_tasks directives still referenced the old .yaml names, causing role execution to fail with 'Could not find or access' errors for extra-packages.yaml, user.yaml, and ssh.yaml. --- roles/system_setup/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/system_setup/tasks/main.yml b/roles/system_setup/tasks/main.yml index 2ada687..88a0a37 100755 --- a/roles/system_setup/tasks/main.yml +++ b/roles/system_setup/tasks/main.yml @@ -5,10 +5,10 @@ name: system_maintenance # Install extra packages -- include_tasks: extra-packages.yaml +- include_tasks: extra-packages.yml # Create a user admin account -- include_tasks: user.yaml +- include_tasks: user.yml # Harden SSH configuration -- include_tasks: ssh.yaml \ No newline at end of file +- include_tasks: ssh.yml \ No newline at end of file