diff options
author | Marcel Haerry <haerry@puzzle.ch> | 2008-05-26 17:47:46 +0200 |
---|---|---|
committer | Marcel Haerry <haerry@puzzle.ch> | 2008-05-26 17:47:46 +0200 |
commit | cd86e09b9701692452f80a49cec68574ed67b39e (patch) | |
tree | 9f817938a63a529bea8d8deb5ef05a49cdfa0f44 | |
parent | 2bd5b840234352daf85ecc2dcaff4f4fbc43a0ab (diff) | |
download | puppet-resolvconf-cd86e09b9701692452f80a49cec68574ed67b39e.tar.gz puppet-resolvconf-cd86e09b9701692452f80a49cec68574ed67b39e.tar.bz2 |
removed shorewall
-rw-r--r-- | manifests/init.pp | 4 | ||||
-rw-r--r-- | manifests/shorewall.pp | 22 |
2 files changed, 0 insertions, 26 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index ef73956..ef83b3e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -26,8 +26,4 @@ class resolvconf { mode => 444, content => template("resolvconf/resolvconf.erb") } - - if $use_shorewall { - include resolvconf::shorewall - } } diff --git a/manifests/shorewall.pp b/manifests/shorewall.pp deleted file mode 100644 index 114bda7..0000000 --- a/manifests/shorewall.pp +++ /dev/null @@ -1,22 +0,0 @@ -# manifests/shorewall.pp - -class resolvconf::shorewall { - include shorewall - - shorewall::rule { - 'me-net-tcp_dns': - source => '$FW', - destination => 'net', - proto => 'tcp', - destinationport => '53', - order => 250, - action => 'ACCEPT'; - 'me-net-udp_dns': - source => '$FW', - destination => 'net', - proto => 'udp', - destinationport => '53', - order => 251, - action => 'ACCEPT'; - } -} |