From: <svn...@op...> - 2010-01-18 19:48:46
|
Author: scriptor Date: Mon Jan 18 20:41:09 2010 New Revision: 6013 URL: http://www.opensync.org/changeset/6013 Log: Smaller fixes of several versions of the AUTH variable. This is the most important variable in test.conf. It will have to be changed almost certainly, if somebody wants to run the test suite. Please remember: The test suite with the LDAP plugin expects at least one fully configured, prepared and running LDAP server. Modified: plugins/ldap-sync/tests/test.conf Modified: plugins/ldap-sync/tests/test.conf ============================================================================== --- plugins/ldap-sync/tests/test.conf Sun Jan 17 19:01:31 2010 (r6012) +++ plugins/ldap-sync/tests/test.conf Mon Jan 18 20:41:09 2010 (r6013) @@ -65,11 +65,12 @@ # The AUTH variable is used for the command lines tools ldapsearch, # ldapadd etc. only. It is NOT used for the ldap-sync plugin of libopensync. ### Examples for slapd from openldap for the ldap utilities from openldap: ### -#AUTH="-Y DIGEST-MD5 -U ${AUTH_CID} -w ${PASSWORD} -Q" -AUTH="-h ${LDAP_SERVER_ADDRESS} -Y GSSAPI -Q" +#AUTH="-h ${LDAP_SERVER_ADDRESS} -p ${LDAP_SERVER_PORT} -Y DIGEST-MD5 -U ${AUTH_CID} -w ${PASSWORD} -Q" +AUTH="-h ${LDAP_SERVER_ADDRESS} -p ${LDAP_SERVER_PORT} -Y GSSAPI -Q" ### Example for ns-slapd from the fedora directory server for the ldap ### utilities from openldap: ### -#AUTH="-x -D "${BINDDN}" -w ${PASSWORD} -h ${LDAP_SERVER_ADDRESS} -p ${LDAP_SERVER2_PORT}" +#AUTH="-h ${LDAP_SERVER2_ADDRESS} -p ${LDAP_SERVER2_PORT} -x -D \"${BINDDN}\" -w ${PASSWORD} " +#AUTH="-h ${LDAP_SERVER2_ADDRESS} -p ${LDAP_SERVER2_PORT} -Y GSSAPI -Q " ######################### |