diff options
author | Sven Nierlein <Sven.Nierlein@consol.de> | 2013-09-14 19:59:17 +0200 |
---|---|---|
committer | Sven Nierlein <sven@consol.de> | 2013-09-14 19:59:17 +0200 |
commit | 6361247b4c72b2527ffef5c5c4d9672264b61941 (patch) | |
tree | b20915d71c110d3c47a0100e4aecef06a5e148fc /plugins/t/check_udp.t | |
parent | 7b122f13dbb0bd714b47e1181ba36bfbb3bd7658 (diff) | |
download | monitoring-plugins-6361247b4c72b2527ffef5c5c4d9672264b61941.tar.gz |
check_udp: try nc.traditional too
nc.traditional is available on (at least) ubuntu systems and uses traditional nc syntax
Diffstat (limited to 'plugins/t/check_udp.t')
-rw-r--r-- | plugins/t/check_udp.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/t/check_udp.t b/plugins/t/check_udp.t index ae1718c4..6ede300b 100644 --- a/plugins/t/check_udp.t +++ b/plugins/t/check_udp.t @@ -31,7 +31,10 @@ cmp_ok( $res->return_code, '==', 2, "Errors correctly because no udp service run like ( $res->output, '/No data received from host/', "Output OK"); my $nc; -if(system("which netcat >/dev/null 2>&1") == 0) { +if(system("which nc.traditional >/dev/null 2>&1") == 0) { + $nc = 'nc.traditional -w 3 -l -u -p 3333'; +} +elsif(system("which netcat >/dev/null 2>&1") == 0) { $nc = 'netcat -w 3 -l -u -p 3333'; } elsif(system("which nc >/dev/null 2>&1") == 0) { |