#----------------------------------------------------------------------------- # /etc/check.d/ldapclient.exp - expressions for check table of configuration params # # Copyright (c) 2010-2023 The Eisfair Team, team(at)eisfair(dot)org # # Creation: 2010-01-17 jed # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #----------------------------------------------------------------------------- LDAPCLIENT_LDAP_URI = 'ldap[s]?://[[:alnum:]/~.-]+(:(RE:NUMERIC)(/[[:alnum:]/~.-]*)?)?(:(RE:PORT))?(/)?' : 'no valid LDAP-URI, should be in the following format: ldap://ldap-server:ldap-port' LDAPCLIENT_LDAP_URIS = '(RE:LDAPCLIENT_LDAP_URI)( (RE:LDAPCLIENT_LDAP_URI))*' : 'no valid LDAP-URIs given, should be one or more uri separated by a space. e.g.: ldaps://ldap-server ldap://ldap-server:ldap-port' LDAPCLIENT_LDAP_BASEDN = '((cn|dc|ou|uid)=[-.[:alnum:]]+,)+(dc=[-.[:alnum:]]+)' : 'no valid base-dn given, should be in the following format: dc=ps,dc=lan etc.' LDAPCLIENT_CERT_CHECK = 'never|allow|try|hard' : 'no valid certification check chosen, should be never, allow, try or hard'