summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-08-31 14:27:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:36:16 -0500
commitd991196655a5102275736a32bf4861ae193a3761 (patch)
treebd8890a398ffb3ee23c2b077c21e9243dbac3968 /source4/scripting
parentadf31c5042497cbdf10d3542672bf8a5d0956216 (diff)
downloadsamba-d991196655a5102275736a32bf4861ae193a3761.tar.gz
samba-d991196655a5102275736a32bf4861ae193a3761.tar.bz2
samba-d991196655a5102275736a32bf4861ae193a3761.zip
r9827: Convert 'passdb backend' rather then 'passdb backends'
Be a bit more verbose (This used to be commit fb2fd8da10b281b2064d4cae5d5a0630e8a207da)
Diffstat (limited to 'source4/scripting')
-rw-r--r--source4/scripting/libjs/upgrade.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/scripting/libjs/upgrade.js b/source4/scripting/libjs/upgrade.js
index 4fe6b8cc1e..0b5a71e50c 100644
--- a/source4/scripting/libjs/upgrade.js
+++ b/source4/scripting/libjs/upgrade.js
@@ -422,7 +422,7 @@ function upgrade(subobj, samba3, message, paths)
// figure out ldapurl, if applicable
var ldapurl = undefined;
- var pdb = samba3.configuration.get_list("passdb backends");
+ var pdb = samba3.configuration.get_list("passdb backend");
if (pdb != undefined) {
for (var b in pdb) {
if (substr(pdb[b], 0, 7) == "ldapsam") {
@@ -438,6 +438,7 @@ function upgrade(subobj, samba3, message, paths)
// Enable samba3sam module if original passdb backend was ldap
if (ldapurl != undefined) {
+ message("Enabling Samba3 LDAP mappings for SAM database\n");
var ldif = sprintf("
dn: @MAP=samba3sam
@MAP_URL: %s", ldapurl);