From 3bb4d15f8d0b9a7db6fc73e020471a2dd042a238 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Thu, 18 Dec 2014 12:03:46 -0800 Subject: [PATCH] Fix lint errors in ldap_user_dn_example parameter There is no $username variable anywhere in the rabbitmq module. ${username} is not a valid cn. While most likely no one was using dc=example,dc=com anyway, this patch at least changes the example value to one that lints. --- manifests/params.pp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index e3b87b24f..40d50c9e6 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -77,9 +77,7 @@ $stomp_ensure = false $ldap_auth = false $ldap_server = 'ldap' - # lint:ignore:variable_scope - $ldap_user_dn_pattern = "cn=${username},ou=People,dc=example,dc=com" - # lint:endignore + $ldap_user_dn_pattern = 'cn=username,ou=People,dc=example,dc=com' $ldap_use_ssl = false $ldap_port = '389' $ldap_log = false