aboutsummaryrefslogtreecommitdiff
path: root/manifests/rtrules.pp
blob: 34e12b4c9acaaec009b8aa97904237d9a27707bd (plain)
1
2
3
4
5
6
7
8
9
10
11
define shorewall::rtrules(
    $source = '-',
    $destination = '-',
    $provider,
    $priority = '10000',
    $mark,
){
    shorewall::entry { "rtrules.d/${mark}-${title}":
        line => "# ${name}\n${source} ${destination} ${provider} ${priority} ${mark}",
    }
}