diff options
author | mh <mh@immerda.ch> | 2012-11-27 23:36:25 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-11-27 23:36:25 +0100 |
commit | 005c89cfbd924e204e87a11248b0efe42d5cc8d6 (patch) | |
tree | a201ff0c6c959196488fc0f1d7b9312187988685 /manifests | |
parent | bc23eb26287c343358a6bfbb9a776a67db39d02e (diff) |
exclude more weird interfaces
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/plugins/interfaces.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/plugins/interfaces.pp b/manifests/plugins/interfaces.pp index 7e9819c..a7e8ce6 100644 --- a/manifests/plugins/interfaces.pp +++ b/manifests/plugins/interfaces.pp @@ -2,7 +2,7 @@ class munin::plugins::interfaces { # filter out many of the useless interfaces that show up - $real_ifs = reject(split($::interfaces, ' |,'), 'eth\d+:\d+|sit0|virbr\d+_nic|vif\d+_\d+|veth\d+') + $real_ifs = reject(split($::interfaces, ' |,'), 'eth\d+:\d+|sit0|virbr\d+_nic|vif\d+_\d+|veth\d+|__temp\d+') $ifs = regsubst($real_ifs, '(.+)', "if_\\1") munin::plugin { |