aboutsummaryrefslogtreecommitdiff
path: root/manifests/providers.pp
blob: d17924789f0b08fec7e8ab9e190c246d4209efc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
define shorewall::providers(
    $number,
    $mark,
    $duplicate = '-',
    $interface,
    $gateway,
    $options = '-',
    $copy = '',
){
    shorewall::entry { "providers.d/${mark}-${title}":
        line => "${name} ${number} ${mark} ${duplicate} ${interface} ${gateway} ${options} ${copy}",
    }
}