Process entries sequentially in ldapjs-add
This more closely mimics the behavior of ldapadd when it processes LDIF entries in the order they are listed in the file.
This commit is contained in:
parent
de16802a16
commit
b94a66916e
|
@ -6,6 +6,7 @@ var fs = require('fs');
|
|||
var path = require('path');
|
||||
|
||||
var dashdash = require('dashdash');
|
||||
var vasync = require('vasync');
|
||||
|
||||
var ldap = require('../lib/index');
|
||||
var Logger = require('bunyan');
|
||||
|
@ -170,9 +171,17 @@ client.bind(parsed.binddn, parsed.password, function (err, res) {
|
|||
client.unbind(function () { return; });
|
||||
}
|
||||
|
||||
parsed.file.forEach(function (entry) {
|
||||
vasync.forEachPipeline({
|
||||
inputs: parsed.file,
|
||||
func: function (entry, cb) {
|
||||
var dn = entry.dn;
|
||||
delete entry.dn;
|
||||
client.add(dn, entry, callback);
|
||||
client.add(dn, entry, cb);
|
||||
}
|
||||
}, function (err2, res2) {
|
||||
if (err2) {
|
||||
perror(err2);
|
||||
}
|
||||
client.unbind(function () { return; });
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue