aboutsummaryrefslogtreecommitdiff
path: root/manifests/extension_script.pp
blob: 4abc6b18ed36a5f4632acf7a5b75fe08bb683b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# See http://shorewall.net/shorewall_extension_scripts.htm
define shorewall::extension_script($script = '') {
    case $name {
        'init', 'initdone', 'start', 'started', 'stop', 'stopped', 'clear', 'refresh', 'continue', 'maclog': {
          file { "/etc/shorewall/puppet/${name}":
            content => "${script}\n",
            notify  => Exec['shorewall_check'];
          }
        }
        '', default: {
          err("${name}: unknown shorewall extension script")
        }
    }
}