aboutsummaryrefslogtreecommitdiff
path: root/NPTest.pm
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2014-01-20 10:56:28 -0500
committerGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2014-01-20 10:56:28 -0500
commitce3eaa25e1c6f39b7a1266592de22c1bfbc48f5d (patch)
tree22a7e962a95c0d81daa196d721c6e96095f4b6f1 /NPTest.pm
parentbb38a5735216c1a2eefc9449a5a6b49733674c16 (diff)
downloadmonitoring-plugins-ce3eaa25e1c6f39b7a1266592de22c1bfbc48f5d.tar.gz
Fix NPTest.pm not asking for unconfigured variables
It appeats STDERR isn't a tty anymore during tests, but since we type from tty to STDIN it should be bound to our tty (and works for me).
Diffstat (limited to 'NPTest.pm')
-rw-r--r--NPTest.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/NPTest.pm b/NPTest.pm
index ebc2602c..b00a7086 100644
--- a/NPTest.pm
+++ b/NPTest.pm
@@ -347,7 +347,7 @@ sub getTestParameter
}
# Set "none" if no terminal attached (eg, tinderbox build servers when new variables set)
- return "" unless (-t STDERR);
+ return "" unless (-t STDIN);
my $userResponse = "";