From 0bd9f6bfa75b599dda1b14c21eb223a5f5dc70f2 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 13 Dec 2025 08:21:52 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Remove=20unused=20task?= =?UTF-8?q?=20imports?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit removes the imports for 'unpriv-user.yml' and 'color-shell.yml' tasks. These tasks were identified as potentially unused and have been removed to streamline the project and reduce potential maintenance overhead. This change improves project cleanliness and reduces the risk of future conflicts. --- tasks/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 7bfc868..3f4d342 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -12,8 +12,10 @@ # - name: Make /tmp non-executable # ansible.builtin.import_tasks: tmp-nonexec.yml -- name: Import tasks to ensure creation of unprivileged user - ansible.builtin.import_tasks: unpriv-user.yml + +# not sure if needed, but I'll leave it here as a reference if needed. +# - name: Import tasks to ensure creation of unprivileged user +# ansible.builtin.import_tasks: unpriv-user.yml - name: Import custom fact setting ansible.builtin.import_tasks: custom-fact.yml @@ -28,8 +30,9 @@ - name: Import firmware tasks ansible.builtin.import_tasks: additional-firmware.yml -- name: Import color-shell tasks for the common-role - ansible.builtin.import_tasks: color-shell.yml +# not sure if needed, but I'll leave it here as a reference if needed. +# - name: Import color-shell tasks for the common-role +# ansible.builtin.import_tasks: color-shell.yml - name: Import journald tasks for the common-role ansible.builtin.import_tasks: edit-journald.yml