From 1337a268ffbd195ca40d59ebd24bb199b99ffc66 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Tue, 7 Apr 2009 18:43:06 -0400 Subject: add http://shorewall.net/shorewall_extension_scripts.htm extension_script define --- manifests/init.pp | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp index 7c3089b..b022cd6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -7,6 +7,7 @@ # at https://reductivelabs.com/trac/puppet/wiki/AqueosShorewall # # Changes: +# * added extension_script define: http://shorewall.net/shorewall_extension_scripts.htm # * FHS Layout: put configuration in /var/lib/puppet/modules/shorewall and # adjust CONFIG_PATH # * remove shorewall- prefix from defines in the shorewall namespace @@ -17,7 +18,7 @@ # * add managing for masq, proxyarp, blacklist, nat, rfc1918 # adapted by immerda project group - admin+puppet(at)immerda.ch # adapted by Puzzle ITC - haerry+puppet(at)puzzle.ch -# +# adapted by Riseup Networks - micah(shift+2)riseup.net modules_dir { "shorewall": } @@ -201,6 +202,20 @@ class shorewall { } } + # See http://shorewall.net/shorewall_extension_scripts.htm + define extension_script($script = '') { + case $name { + 'init', 'initdone', 'start', 'started', 'stop', 'stopped', 'clear', 'refresh', 'continue', 'maclog': { + managed_file { "${name}": } + entry { "${name}.d/500-${hostname}": + line => "${script}\n"; + } + } + '', default: { + err("${name}: unknown shorewall extension script") + } + } + } } class shorewall::base { -- cgit v1.2.3