From 8c662fa9d2b5f36c2ead473b27399d1aa190a721 Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Fri, 1 Aug 2014 11:29:08 -0400 Subject: [ldap] - fix undefined variable ldap_conf Code was attempting to access a variable within the incorrect scope. Signed-off-by: Adam Stokes --- sos/plugins/ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/ldap.py b/sos/plugins/ldap.py index a0d4f018..d086fd06 100644 --- a/sos/plugins/ldap.py +++ b/sos/plugins/ldap.py @@ -78,7 +78,7 @@ class DebianLdap(Ldap, DebianPlugin, UbuntuPlugin): ldap_search = "ldapsearch -Q -LLL -Y EXTERNAL -H ldapi:/// " self.add_copy_specs([ - ldap_conf, + self.ldap_conf, "/etc/slapd.conf", "/etc/ldap/slapd.d" ]) -- cgit