check_hp output null

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
makgab
Posts: 15
Joined: Wed Jan 23, 2013 10:10 am

Re: check_hp output null

Post by makgab »

I solved it. :)
The check_hp plugin contain an invalid path by me:

Code: Select all

use POSIX;
use strict;
use lib "/usr/local/nagios/libexec";
...
The correct path:

Code: Select all

use lib "/usr/lib/nagios/plugins";

It works! :)
Thanks!
Locked