diff --git a/ucs-4.0-0/management/univention-management-console-module-udm/umc/python/udm/udm_ldap.py b/ucs-4.0-0/management/univention-management-console-module-udm/umc/python/udm/udm_ldap.py index 7fe33f1..b341ed5 100644 --- a/ucs-4.0-0/management/univention-management-console-module-udm/umc/python/udm/udm_ldap.py +++ b/ucs-4.0-0/management/univention-management-console-module-udm/umc/python/udm/udm_ldap.py @@ -102,9 +102,11 @@ class LDAP_ServerDown(UMC_Error): fqdn = '%s.%s' % (ucr.get('hostname'), ucr.get('domainname')) yield _('Cannot connect to the LDAP service.') yield _('The following steps can help to solve this problem:') - yield ' * ' + _('Check the available hard disk space and RAM on the domaincontroller master') - if not is_master: + if is_master: + yield ' * ' + _('Check if enough hard disk space and free RAM is available on this server or free some resources') + else: yield ' * ' + _('Make sure the domaincontroller master is running and reachable from %s') % (fqdn,) + yield ' * ' + _('Check if enough hard disk space and free RAM is available on this server and on the domaincontroller master or free some resources') yield ' * ' + _('Restart the LDAP service on the domaincontroller master either via "invoke-rc.d slapd restart" on command line or with the UMC module "System services"') if updates_available: yield ' * ' + _('Install the latest software updates')