summaryrefslogtreecommitdiff
path: root/source4/setup
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-10 12:11:05 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:19:32 -0500
commitc9c49b11f9e2331bcfe4d5e542027548544ab87c (patch)
treedc8c81e8ba5ab6e4438b26b1b53dfa02f358c6ff /source4/setup
parent4109f7d0692407a700b301e9dd787eb68ed96604 (diff)
downloadsamba-c9c49b11f9e2331bcfe4d5e542027548544ab87c.tar.gz
samba-c9c49b11f9e2331bcfe4d5e542027548544ab87c.tar.bz2
samba-c9c49b11f9e2331bcfe4d5e542027548544ab87c.zip
r8289: fallback to the group 'other' for users
this might fix the testing on solaris10 (This used to be commit 5adbab0afe85f5f856ab5fcc7a285a22f1752de3)
Diffstat (limited to 'source4/setup')
-rwxr-xr-xsource4/setup/provision.pl2
1 files changed, 2 insertions, 0 deletions
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";
}
}