summaryrefslogtreecommitdiffstats
path: root/plugins/t
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-03-24 17:26:30 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-03-24 17:26:30 (GMT)
commitfb00fee631549fa3d975b9f35ca8de84d57f3b06 (patch)
treedc8dcc86e0b27d70c71b40a30d8e0f4b1e265288 /plugins/t
parent63248c27ee7e18f6ed3d0219cfee8cdd218066aa (diff)
downloadmonitoring-plugins-fb00fee631549fa3d975b9f35ca8de84d57f3b06.tar.gz
Fixing defaults to work
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1357 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/t')
-rw-r--r--plugins/t/check_dns.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/t/check_dns.t b/plugins/t/check_dns.t
index 9a95e80..3874657 100644
--- a/plugins/t/check_dns.t
+++ b/plugins/t/check_dns.t
@@ -18,19 +18,19 @@ my $successOutput = '/DNS OK: [\.0-9]+ seconds response time/';
18my $hostname_valid = getTestParameter( 18my $hostname_valid = getTestParameter(
19 "NP_HOSTNAME_VALID", 19 "NP_HOSTNAME_VALID",
20 "A valid (known to DNS) hostname", 20 "A valid (known to DNS) hostname",
21 "www.apple.com" 21 "apple.com"
22 ); 22 );
23 23
24my $hostname_valid_ip = getTestParameter( 24my $hostname_valid_ip = getTestParameter(
25 "NP_HOSTNAME_VALID_IP", 25 "NP_HOSTNAME_VALID_IP",
26 "The IP address of the valid hostname $hostname_valid", 26 "The IP address of the valid hostname $hostname_valid",
27 "17.112.152.32" 27 "17.254.3.183"
28 ); 28 );
29 29
30my $hostname_valid_reverse = getTestParameter( 30my $hostname_valid_reverse = getTestParameter(
31 "NP_HOSTNAME_VALID_REVERSE", 31 "NP_HOSTNAME_VALID_REVERSE",
32 "The hostname of $hostname_valid_ip", 32 "The hostname of $hostname_valid_ip",
33 $hostname_valid 33 $hostname_valid."."
34 ); 34 );
35 35
36my $hostname_invalid = getTestParameter( 36my $hostname_invalid = getTestParameter(