We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the /etc/nagios/nrpe.cfg contains two definitions of a command like this:
command[check_users]=/usr/lib64/nagios/plugins/check_users -w 5 -c 10 command[check_users]=/usr/lib64/nagios/plugins/check_users -w 5 -c 10 command[check_total_procs]=/usr/lib64/nagios/plugins/check_procs -w 150 -c 200 command[check_total_procs]=/usr/lib64/nagios/plugins/check_procs -w 800 -c 900
and puppet tries to define the command like this:
nrpe_command { 'check_users' : command => '/usr/lib64/nagios/plugins/check_users -w 5 -c 10', } nrpe_command { 'check_total_procs' : command => '/usr/lib64/nagios/plugins/check_procs -w 400 -c 500', }
it silently, and persistently fails like this:
Notice: /Stage[main]/Profile::Drw::Nrpe/Nrpe_command[check_users]/command: command changed '' to '/usr/lib64/nagios/plugins/check_users -w 5 -c 10' Notice: /Stage[main]/Profile::Drw::Nrpe/Nrpe_command[check_total_procs]/command: command changed '' to '/usr/lib64/nagios/plugins/check_procs -w 400 -c 500'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the /etc/nagios/nrpe.cfg contains two definitions of a command like this:
and puppet tries to define the command like this:
it silently, and persistently fails like this:
The text was updated successfully, but these errors were encountered: