summaryrefslogtreecommitdiffstats
path: root/NPTest.pm
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-10-26 21:32:08 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-10-26 21:32:08 (GMT)
commit299c6bab02f4a2068a7ba8bdfefc6c155f7d7364 (patch)
tree891e38a1313b5ec1a2dade57e33c33749ea294c3 /NPTest.pm
parent94a3cf91b3548388a9b278273ac596203a4a9e75 (diff)
downloadmonitoring-plugins-299c6bab02f4a2068a7ba8bdfefc6c155f7d7364.tar.gz
New test variables default to "none", so no changes required to tinderbox satelites
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1530 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'NPTest.pm')
-rw-r--r--NPTest.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/NPTest.pm b/NPTest.pm
index 432f396..672cb99 100644
--- a/NPTest.pm
+++ b/NPTest.pm
@@ -54,8 +54,8 @@ user. The user can accept the developer's default value or reply "none"
54which will then be returned as "" for the test to skip if appropriate. 54which will then be returned as "" for the test to skip if appropriate.
55 55
56If a parameter needs to be entered and the test is run without a tty 56If a parameter needs to be entered and the test is run without a tty
57attached (such as a cronjob), this routine will die causing the test to 57attached (such as a cronjob), the parameter will be assigned as if it
58fail. 58was "none". Tests can check for the parameter and skip if not set.
59 59
60Responses are stored in an external, file-based 60Responses are stored in an external, file-based
61cache so subsequent test runs will use these values. The user is able 61cache so subsequent test runs will use these values. The user is able
@@ -346,7 +346,8 @@ sub getTestParameter
346 return $default; 346 return $default;
347 } 347 }
348 348
349 die "Need to manually enter test parameter $param" unless (-t STDERR); 349 # Set "none" if no terminal attached (eg, tinderbox build servers when new variables set)
350 return "" unless (-t STDERR);
350 351
351 my $userResponse = ""; 352 my $userResponse = "";
352 353