aboutsummaryrefslogtreecommitdiff
path: root/manifests/tcdevices.pp
blob: 54c9665baca8e26d7d14dcea0fcc544c133ddcb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
define shorewall::tcdevices(
    $in_bandwidth,
    $out_bandwidth,
    $options = '',
    $redirected_interfaces = '',
    $order = '100'
){
    shorewall::entry { "tcdevices.d/${order}-${title}":
        line => "${name} ${in_bandwidth} ${out_bandwidth} ${options} ${redirected_interfaces}",
    }
}