aboutsummaryrefslogtreecommitdiff
path: root/plugins-root
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <Sven.Nierlein@consol.de> 2013-09-17 13:13:26 +0200
committerGravatar Sven Nierlein <sven@consol.de> 2013-09-17 13:13:26 +0200
commit08d554ada1d12a0a0bc9c2e6e218789e05287af8 (patch)
tree53d107c23b70d2e4d1ef7d8448c05a2b6df240ba /plugins-root
parent9090beb058739f24930c27a3864daa773985144d (diff)
downloadmonitoring-plugins-08d554ada1d12a0a0bc9c2e6e218789e05287af8.tar.gz
check_dhcp: fix tests interface detection
Diffstat (limited to 'plugins-root')
-rw-r--r--plugins-root/t/check_dhcp.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-root/t/check_dhcp.t b/plugins-root/t/check_dhcp.t
index 555523a3..222f4544 100644
--- a/plugins-root/t/check_dhcp.t
+++ b/plugins-root/t/check_dhcp.t
@@ -36,7 +36,7 @@ my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID",
# try to determince interface
my $interface = '';
-if(`ifconfig -a 2>/dev/null` =~ m/^(e(m|th)\d+)/mx and $1 ne 'eth0') {
+if(`ifconfig -a 2>/dev/null` =~ m/^(e\w*\d+)/mx and $1 ne 'eth0') {
$interface = ' -i '.$1;
}