From 59d3259171c04f86ea94909493e173fec147d9ae Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 12 Oct 2004 11:30:48 +0000 Subject: 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) --- source4/script/provision.pl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/script') 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}"); -- cgit