aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/ldap.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/sos/plugins/ldap.py b/sos/plugins/ldap.py
index eb8e7556..cbbd6a7f 100644
--- a/sos/plugins/ldap.py
+++ b/sos/plugins/ldap.py
@@ -80,7 +80,9 @@ class DebianLdap(Ldap, DebianPlugin, UbuntuPlugin):
def postproc(self):
super(RedHatLdap, self).postproc()
self.do_cmd_output_sub(
- "ldapsearch -Q -LLL -Y EXTERNAL -H ldapi:/// -b cn=config '(!(objectClass=olcSchemaConfig))'",
- r"(olcRootPW\: \s*)\S+", r"\1********")
+ "ldapsearch"
+ r"(olcRootPW\: \s*)\S+",
+ r"\1********"
+ )
# vim: et ts=4 sw=4