From dec422fe1826eee14c3346f630fe0b8a660ba24c Mon Sep 17 00:00:00 2001 From: Marcin Krol Date: Wed, 5 Sep 2018 08:09:59 +0000 Subject: [PATCH] - treat uid/gid 1000 as system one, we must keep users group for backward compatibility --- shadow-login.defs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shadow-login.defs b/shadow-login.defs index 2b04047..ef79651 100644 --- a/shadow-login.defs +++ b/shadow-login.defs @@ -163,20 +163,20 @@ PASS_WARN_AGE 7 # # Min/max values for automatic uid selection in useradd # -UID_MIN 1000 +UID_MIN 1001 UID_MAX 60000 # System accounts SYS_UID_MIN 1 -SYS_UID_MAX 999 +SYS_UID_MAX 1000 # # Min/max values for automatic gid selection in groupadd # -GID_MIN 1000 +GID_MIN 1001 GID_MAX 60000 # System accounts SYS_GID_MIN 10 -SYS_GID_MAX 999 +SYS_GID_MAX 1000 # # Max number of login retries if password is bad. This will most likely be -- 2.44.0