1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-13 08:23:49 +03:00

r8445: if a system doesn't have "nogroup" then try "nobody"

(This used to be commit 433f9d0a61)
This commit is contained in:
Andrew Tridgell
2005-07-14 03:10:17 +00:00
committed by Gerald (Jerry) Carter
parent 1ab2c5009a
commit 2d0468ac9a

View File

@@ -208,7 +208,7 @@ function provision_guess()
subobj.USN = nextusn;
subobj.ROOT = findnss(getpwnam, "root");
subobj.NOBODY = findnss(getpwnam, "nobody");
subobj.NOGROUP = findnss(getgrnam, "nogroup");
subobj.NOGROUP = findnss(getgrnam, "nogroup", "nobody");
subobj.WHEEL = findnss(getgrnam, "wheel", "root");
subobj.USERS = findnss(getgrnam, "users", "guest", "other");
subobj.DNSDOMAIN = strlower(subobj.REALM);