summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-10-16 03:53:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:21:08 -0500
commit8afbf3a0ef63dfc5553e7de8dc498685d8fd2bc7 (patch)
tree0769290a24458408048cd3ec79d6f37d54da3898 /source4/scripting
parent064b605fab5393a1f9856d06ff56994676d57541 (diff)
downloadsamba-8afbf3a0ef63dfc5553e7de8dc498685d8fd2bc7.tar.gz
samba-8afbf3a0ef63dfc5553e7de8dc498685d8fd2bc7.tar.bz2
samba-8afbf3a0ef63dfc5553e7de8dc498685d8fd2bc7.zip
r19318: Because we don't test the vampire code in SWAT very regularly, it bit-rotted.
Fix up interfaces and interaction between the two.. Andrew Bartlett (This used to be commit 9b77d285d8cd8999547c0d17e97681d236acbdb0)
Diffstat (limited to 'source4/scripting')
-rw-r--r--source4/scripting/libjs/provision.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/scripting/libjs/provision.js b/source4/scripting/libjs/provision.js
index 2dc6bb522b..05e6726244 100644
--- a/source4/scripting/libjs/provision.js
+++ b/source4/scripting/libjs/provision.js
@@ -368,10 +368,12 @@ function provision_default_paths(subobj)
/*
setup reasonable name mappings for sam names to unix names
*/
-function setup_name_mappings(info, subobj, ldb)
+function setup_name_mappings(info, ldb)
{
var lp = loadparm_init();
var attrs = new Array("objectSid");
+ var subobj = info.subobj;
+
res = ldb.search("objectSid=*", subobj.BASEDN, ldb.SCOPE_BASE, attrs);
assert(res.length == 1 && res[0].objectSid != undefined);
var sid = res[0].objectSid;
@@ -525,7 +527,7 @@ function provision(subobj, message, blank, paths, session_info, credentials)
message("Setting up sam.ldb users and groups\n");
setup_add_ldif("provision_users.ldif", info, samdb, false);
- if (setup_name_mappings(info, subobj, samdb) == false) {
+ if (setup_name_mappings(info, samdb) == false) {
return false;
}