From 9c58518e7726dce42286d3f7a8fc60dab205d6d2 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 14 Dec 2025 06:19:41 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Import=20unprivileged=20use?= =?UTF-8?q?r=20task?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit introduces the `unpriv-user.yml` task, enabling the creation of unprivileged user accounts. This addition expands user management capabilities, allowing for more granular control over user permissions and access within the system. The task facilitates the streamlined setup of users without requiring elevated privileges. --- tasks/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index fd6d6fc..33058ad 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,9 +10,8 @@ # - name: Make /tmp non-executable # ansible.builtin.import_tasks: tmp-nonexec.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 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