Issue #4020 has been updated by Brian Gallew.
Well, maybe I *will* take a lot longer to get this done. Clearly, I fail to understand how my changes are affecting the tests. For instance, there is code (which comes before all my changes) which explicitly skips any names starting with a digit. Yet somehow, my code makes that test fail. Having never done (r)spec before, this promises to be an interesting learning experience. ---------------------------------------- Bug #4020: metaparameter "hostgroups" in nagios_host type should accept arrays https://projects.puppetlabs.com/issues/4020 Author: Gabriel Filion Status: Tests Insufficient Priority: Normal Assignee: James Turnbull Category: nagios Target version: 2.7.x Affected Puppet version: Keywords: communitypatch Branch: When supplying an array of strings to the hostgroups value of nagios_host resources, the strings should be joined by commas. currently, doing so: nagios_host{ "foo.bar": address => "foo.bar", hostgroups => ["hello", "world"], } results in something like the following: define host { address foo.bar host_name foo.bar hostgroups hello } It should instead read: define host { address foo.bar host_name foo.bar hostgroups hello,world } -- 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://projects.puppetlabs.com/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.
