From 65f39c65451d0418894c233c7d62f4b92ae89808 Mon Sep 17 00:00:00 2001 From: levasseur Date: Tue, 12 Oct 2021 16:54:14 +0200 Subject: [PATCH] authnz: suppressed misunderstood skell option to adduser --- modules/authnz.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/authnz.sh b/modules/authnz.sh index 6e0f38f..1dfcffe 100644 --- a/modules/authnz.sh +++ b/modules/authnz.sh @@ -31,7 +31,7 @@ create_user() { if [[ $(noerror --noout id $1) != 0 ]]; then prnt I "Création de l'utilisateur $1 ..." - useradd --create-home --skel --shell $DEFAULT_SHELL --user-group $1 + useradd --create-home --shell $DEFAULT_SHELL --user-group $1 else prnt W "L'utilisateur $1 existe déjà. Rien à faire..." fi