summaryrefslogtreecommitdiff
path: root/manifests/plugins/interfaces.pp
blob: 18a713b2003fa74d0a7a39c9cf42addb3e8c45ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# handle if_ and if_err_ plugins
class munin::plugins::interfaces  { 

  $ifs = regsubst(split($interfaces, " |,"), "(.+)", "if_\\1")
  munin::plugin {
    $ifs: ensure => "if_";
  }
  case $operatingsystem {
    openbsd: {
      $if_errs = regsubst(split($interfaces, " |,"), "(.+)", "if_errcoll_\\1")
      munin::plugin{
        $if_errs: ensure => "if_errcoll_";
      }
    }
    default: {
      $if_errs = regsubst(split($interfaces, " |,"), "(.+)", "if_err_\\1")
      munin::plugin{
        $if_errs: ensure => "if_err_";
      }
    }
  }
}