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

jelmer at samba.org jelmer at samba.org
Mon Aug 29 15:55:40 GMT 2005


Author: jelmer
Date: 2005-08-29 15:55:35 +0000 (Mon, 29 Aug 2005)
New Revision: 9746

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

Log:
Add "staff" as possible alternative to wheel 
(should fix standard provisioning on AIX)

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	2005-08-29 15:55:15 UTC (rev 9745)
+++ branches/SAMBA_4_0/source/scripting/libjs/provision.js	2005-08-29 15:55:35 UTC (rev 9746)
@@ -291,7 +291,7 @@
 	subobj.ROOT         = findnss(nss.getpwnam, "root");
 	subobj.NOBODY       = findnss(nss.getpwnam, "nobody");
 	subobj.NOGROUP      = findnss(nss.getgrnam, "nogroup", "nobody");
-	subobj.WHEEL        = findnss(nss.getgrnam, "wheel", "root");
+	subobj.WHEEL        = findnss(nss.getgrnam, "wheel", "root", "staff");
 	subobj.USERS        = findnss(nss.getgrnam, "users", "guest", "other");
 	subobj.DNSDOMAIN    = strlower(subobj.REALM);
 	subobj.DNSNAME      = sprintf("%s.%s", 



More information about the samba-cvs mailing list