Issue #1991 has been reported by lludwig.
----------------------------------------
Bug #1991: LDAP and using puppetVar variables in Puppet
http://projects.reductivelabs.com:80/issues/1991
Author: lludwig
Status: Unreviewed
Priority: Normal
Assigned to:
Category:
Target version:
Complexity: Unknown
Affected version: 0.24.7
Keywords:
when using puppetVar variables within puppet all are automatically converted to
string, including true and false. So what was once working with internal nodes:
<pre>
case $config_da_clamd {
false: { include directadmin-clamd::remove }
default: { include directadmin-clamd::install }
}
</pre>
Must now be:
<pre>
case $config_da_clamd {
"false": { include directadmin-clamd::remove }
default: { include directadmin-clamd::install }
}
</pre>
When using LDAP.
As a work around use the get_var in the wiki to ensure true and false are
booleans.
http://reductivelabs.com/trac/puppet/wiki/LDAPNodes
----------------------------------------
You have received this notification because you have either subscribed to it,
or are involved in it.
To change your notification preferences, please click here:
http://reductivelabs.com/redmine/my/account
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Bugs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/puppet-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---