On Wed, Feb 16, 2011 at 11:38 AM, Derek J. Balling <dr...@megacity.org> wrote:
>
>>        size = self.logs.size
>>        if size == 0 then
>>            system "/usr/lib/nagios/eventhandlers/submit_puppet_result
>> " + ip + " puppet-report 0 \"There has been no change\""
>>        else
>>            system "/usr/lib/nagios/eventhandlers/submit_puppet_result
>> " + ip + " puppet-report 2 \"There have been " + size.to_s + "
>> changes\""
>>        end
>>    end
>> end
>
> This seems, at face value, to only be reporting upward "change/no-change" 
> type of thing.
>
> I'm not at all "ruby-ready" as it were, in terms of programming skill, but it 
> occurs to me that I can think of other conditions I'd be interested in 
> reporting upward (syntax or other errors in the catalog received, or anything 
> really, which causes a cached catalog to be used).
>
> Is there some easy way to add that functionality into this script?
>
> D

Correct, it'll only do change or no change, and if you run puppet with
--test it will also report a change if there isn't any. The yaml
contains a complete report of what's going on though, so you can parse
that for errors and change the message string accordingly and probably
even parse it a little more thoroughly so even --test doesn't report
any changes.

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to