roblewkowski wrote:
It looks like my issue was related to not having the proper objectClasses mapped in the DYN connector. After doing a better mapping in connector Xpress it seems to run as expected. My next question would be: What does the scope=# parameter do in the etautil?
Rob
Rob,
In many way you can think of etautil as a "wrapper" around ldapsearch, ldapadd, ldapmod and ldapdelete. Meaning that you can use the help pages from those programs to figure out things.
For scope, the man pages for ldapsearch shows:
Specifies the scope of the search. The scope can be one of the following:
base searches only the entry specified in the -b option or defined by the LDAP_BASEDN environment variable.
one searches only the immediate children of the entry specified in the -b option. Only the children are searched; the actual entry specified in the -b option is not searched.
sub searches the entry specified in the -b option and all of its descendants; that is, perform a subtree search starting at the point identified in the -b option. This is the default.
Cheers, Atle