summaryrefslogtreecommitdiff
path: root/source4/script/provision.pl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-10-12 11:30:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:49 -0500
commit59d3259171c04f86ea94909493e173fec147d9ae (patch)
tree49ba9469b5be1fcc5af43b4d677f610d06fd6c24 /source4/script/provision.pl
parent2e8b3926c69ee1d98a8958a8548ec2007ff2a3fb (diff)
downloadsamba-59d3259171c04f86ea94909493e173fec147d9ae.tar.gz
samba-59d3259171c04f86ea94909493e173fec147d9ae.tar.bz2
samba-59d3259171c04f86ea94909493e173fec147d9ae.zip
r2934: - changed the unixuid module to use the nt_user_token instead of the server supplied info structure.
- added SID_WORLD and SID_NETWORK to the foreign sids in the provisioning, as these are auto-added to the nt_user_token (why is that done? Andrew?) (This used to be commit 1dff12fba88827660a2647457867bf4ff6bc8d3d)
Diffstat (limited to 'source4/script/provision.pl')
-rwxr-xr-xsource4/script/provision.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/script/provision.pl b/source4/script/provision.pl
index e98181b05f..326a7e60cf 100755
--- a/source4/script/provision.pl
+++ b/source4/script/provision.pl
@@ -322,6 +322,8 @@ $basedn = "DC=" . join(",DC=", split(/\./, $opt_realm));
my $data = FileLoad("provision.ldif") || die "Unable to load provision.ldif\n";
$data .= add_foreign("S-1-5-7", "Anonymous", "\${NOBODY}");
+$data .= add_foreign("S-1-1-0", "World", "\${NOGROUP}");
+$data .= add_foreign("S-1-5-2", "Network", "\${NOGROUP}");
$data .= add_foreign("S-1-5-18", "System", "root");
$data .= add_foreign("S-1-5-11", "Authenticated Users", "\${USERS}");