Skip to content
Snippets Groups Projects
Commit 45aeb978 authored by sveseli's avatar sveseli
Browse files

some more logging changes; updated release notes

parent 2238b96e
No related branches found
No related tags found
No related merge requests found
Release 0.14 () Release 0.14 (10/14/2016)
============================= =============================
- Introduced new framework and utilities for synchronizing users with - Introduced new framework and utilities for synchronizing users with
......
...@@ -105,6 +105,12 @@ if [ -d $postgresqlDir ]; then ...@@ -105,6 +105,12 @@ if [ -d $postgresqlDir ]; then
export DM_POSTGRESQL_DIR=$postgresqlDir export DM_POSTGRESQL_DIR=$postgresqlDir
fi fi
# Setup oracle libraries.
oracleDir=$DM_SUPPORT_DIR/opt/oracle-client/$DM_HOST_ARCH
if [ -d $oracleDir ]; then
LD_LIBRARY_PATH=$oracleDir:$LD_LIBRARY_PATH
fi
# Get back to where we were before invoking the setup script # Get back to where we were before invoking the setup script
cd $currentDir cd $currentDir
......
...@@ -181,8 +181,8 @@ Description: ...@@ -181,8 +181,8 @@ Description:
# User needs update # User needs update
try: try:
self.logger.debug('Modifying LDAP user with badge %s, username %s' % (badge, username)) self.logger.debug('Modifying LDAP user with badge %s, username %s' % (badge, username))
self.logger.debug('APS password hash: %s, DM password hash: %s' % (apsPasswordHash, dmPasswordHash)) #self.logger.debug('APS password hash: %s, DM password hash: %s' % (apsPasswordHash, dmPasswordHash))
self.logger.debug('Encoded DM password hash: %s' % (dmUser['userAttrs']['userPassword'][0])) #self.logger.debug('Encoded DM password hash: %s' % (dmUser['userAttrs']['userPassword'][0]))
ldapUserManager.modifyUserInfo(username, ldapModAttrDict) ldapUserManager.modifyUserInfo(username, ldapModAttrDict)
nUpdatedUsers += 1 nUpdatedUsers += 1
except Exception, ex: except Exception, ex:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment