View | Details | Raw Unified | Return to bug 14877 | Differences between
and this patch

Collapse All | Expand All

(-)ucs/management/univention-ldap/debian/changelog (+6 lines)
 Lines 1-3    Link Here 
1
univention-ldap (7.0.23-1) unstable; urgency=low
2
3
  * ignore spaces in UCRV ldap/database/bdb/db_config_options (Bug #14877)
4
5
 -- Martin Müller <packages@univention.de>  Mon, 27 Jun 2011 17:08:01 +0200
6
1
univention-ldap (7.0.22-1) unstable; urgency=low
7
univention-ldap (7.0.22-1) unstable; urgency=low
2
8
3
  * moved univentionSambaPrivilegeList to objectclass
9
  * moved univentionSambaPrivilegeList to objectclass
(-)ucs/management/univention-ldap/conffiles/var/lib/univention-ldap/ldap/DB_CONFIG (+1 lines)
 Lines 27-32    Link Here 
27
27
28
	if baseConfig.has_key('ldap/database/bdb/db_config_options') and baseConfig['ldap/database/bdb/db_config_options']:
28
	if baseConfig.has_key('ldap/database/bdb/db_config_options') and baseConfig['ldap/database/bdb/db_config_options']:
29
		for option in baseConfig['ldap/database/bdb/db_config_options'].split(','):
29
		for option in baseConfig['ldap/database/bdb/db_config_options'].split(','):
30
			option = option.strip()
30
			if baseConfig.has_key('ldap/database/bdb/%s'%option) and baseConfig['ldap/database/bdb/%s'%option]:
31
			if baseConfig.has_key('ldap/database/bdb/%s'%option) and baseConfig['ldap/database/bdb/%s'%option]:
31
				print '%s %s'%(option,baseConfig['ldap/database/bdb/%s'%option])
32
				print '%s %s'%(option,baseConfig['ldap/database/bdb/%s'%option])
32
@!@
33
@!@

Return to bug 14877