From 2bff5fd4ed41e8da251d6a696b0ad03d4f410b19 Mon Sep 17 00:00:00 2001 From: LinuxSquare Date: Wed, 28 May 2025 23:40:04 +0200 Subject: [PATCH] don't set uid, since system-user get 3-digit and not 4-digit --- template/root/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/root/install.sh b/template/root/install.sh index dc5472f..9575cd0 100644 --- a/template/root/install.sh +++ b/template/root/install.sh @@ -393,7 +393,7 @@ function installation() { runInChroot "chsh -s /usr/bin/fish root" || installationFailed installationSubtaskTitle "Create ansible user" - runInChroot "adduser -s /usr/bin/fish -u 1337 -S -D ansible" + runInChroot "adduser -s /usr/bin/fish -S -D ansible" installationSubtaskTitle "Enable ansible passwordless sudo" runInChroot "echo 'ansible ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers.d/ansible"