1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Allow low ID groups in extrausers
In order to make use of the SUCCESS=merge feature of glibc's name
service switch to extend group membership, we need to be able to
define groups with IDs matching those found in /etc/group.
Author: James Henstridge <james.henstridge@canonical.com>
Reviewed-by: Simon Quigley <tsimonq2@debian.org>
Origin: Ubuntu
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/libnss-extrausers/+bug/785051
Last-Update: 2024-01-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/s_config.h
+++ b/s_config.h
@@ -2,5 +2,5 @@
#define SHADOWFILE "/var/lib/extrausers/shadow"
#define GROUPSFILE "/var/lib/extrausers/group"
#define MINUID 500
-#define MINGID 500
+#define MINGID 0
#define USERSGID 100
|