Page 2 of 2

Re: check_hp output null

Posted: Wed Aug 28, 2013 2:35 am
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!