From 1cd309c1518a846a50012bca1dd36a5d2d07ff3c Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 13 Dec 2025 10:09:04 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Define=20user=20and=20pas?= =?UTF-8?q?sword=20variables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the `main.yml` file to explicitly define essential user and password variables. This ensures the application has the necessary credentials for proper operation and enhances security by centralizing configuration. The changes improve the script's usability and setup process. --- defaults/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index a1b456e..c96819b 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -7,7 +7,6 @@ allow_world_readable_tmpfiles: true ansible_user_id: root -interactive_user: -interactive_home: -interactive_password: - +interactive_user: "{{ remote_user | default('ansible') }}" +interactive_home: "/home/{{ interactive_user}}" +interactive_password: "{{ test_password }}"