diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-10 12:11:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:19:32 -0500 |
commit | c9c49b11f9e2331bcfe4d5e542027548544ab87c (patch) | |
tree | dc8c81e8ba5ab6e4438b26b1b53dfa02f358c6ff /source4/setup/provision.pl | |
parent | 4109f7d0692407a700b301e9dd787eb68ed96604 (diff) | |
download | samba-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/provision.pl')
-rwxr-xr-x | source4/setup/provision.pl | 2 |
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"; } } |