svn commit: samba r8289 - in branches/SAMBA_4_0/source/setup: .

tridge at samba.org tridge at samba.org
Sun Jul 10 12:11:06 GMT 2005


Author: tridge
Date: 2005-07-10 12:11:05 +0000 (Sun, 10 Jul 2005)
New Revision: 8289

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

Log:
fallback to the group 'other' for users
this might fix the testing on solaris10

Modified:
   branches/SAMBA_4_0/source/setup/provision.pl


Changeset:
Modified: branches/SAMBA_4_0/source/setup/provision.pl
===================================================================
--- branches/SAMBA_4_0/source/setup/provision.pl	2005-07-10 10:52:46 UTC (rev 8288)
+++ branches/SAMBA_4_0/source/setup/provision.pl	2005-07-10 12:11:05 UTC (rev 8289)
@@ -387,6 +387,8 @@
 		$opt_users = "users";
 	} elsif (defined getgrnam("guest")) {
 		$opt_users = "guest";
+	} elsif (defined getgrnam("other")) {
+		$opt_users = "other";
 	}
 }
 



More information about the samba-cvs mailing list