Search found 1 match

by pcouderc
Sat Mar 09, 2019 1:43 pm
Forum: Open Source Nagios Projects
Topic: What is wrong with my plugin N
Replies: 1
Views: 534

What is wrong with my plugin N

Here is a working pluging called by NRPE ; #!/bin/bash echo "CRITICAL-pc " exit 1 It works either on the client either on the nagios server. Here is a non working plugin: #!/usr/bin/perl # print STDERR "CRITICAL-pc\n "; exit(1); This works fine on the client but on the server, it...