From c9c49b11f9e2331bcfe4d5e542027548544ab87c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 10 Jul 2005 12:11:05 +0000 Subject: r8289: fallback to the group 'other' for users this might fix the testing on solaris10 (This used to be commit 5adbab0afe85f5f856ab5fcc7a285a22f1752de3) --- source4/setup/provision.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source4/setup/provision.pl b/source4/setup/provision.pl index 99830bfc3f..512f0891c0 100755 --- a/source4/setup/provision.pl +++ b/source4/setup/provision.pl @@ -387,6 +387,8 @@ if (!$opt_users) { $opt_users = "users"; } elsif (defined getgrnam("guest")) { $opt_users = "guest"; + } elsif (defined getgrnam("other")) { + $opt_users = "other"; } } -- cgit