svn commit: samba r18334 - in branches/SAMBA_4_0/source/scripting/libjs: .

tridge at samba.org tridge at samba.org
Sun Sep 10 12:12:24 GMT 2006


Author: tridge
Date: 2006-09-10 12:12:24 +0000 (Sun, 10 Sep 2006)
New Revision: 18334

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18334

Log:

AIX 5.1 doesn't have any of 'users', 'guest', 'other' or 'unknown'

it does have 'usr'

Modified:
   branches/SAMBA_4_0/source/scripting/libjs/provision.js


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/libjs/provision.js
===================================================================
--- branches/SAMBA_4_0/source/scripting/libjs/provision.js	2006-09-10 11:53:44 UTC (rev 18333)
+++ branches/SAMBA_4_0/source/scripting/libjs/provision.js	2006-09-10 12:12:24 UTC (rev 18334)
@@ -616,7 +616,7 @@
 	subobj.NOGROUP      = findnss(nss.getgrnam, "nogroup", "nobody");
 	subobj.WHEEL        = findnss(nss.getgrnam, "wheel", "root", "staff", "adm");
 	subobj.BACKUP       = findnss(nss.getgrnam, "backup", "wheel", "root", "staff");
-	subobj.USERS        = findnss(nss.getgrnam, "users", "guest", "other", "unknown");
+	subobj.USERS        = findnss(nss.getgrnam, "users", "guest", "other", "unknown", "usr");
 	subobj.DNSDOMAIN    = strlower(subobj.REALM);
 	subobj.DNSNAME      = sprintf("%s.%s", 
 				      strlower(subobj.HOSTNAME), 



More information about the samba-cvs mailing list