summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authoram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-11-06 12:01:41 +0000
committeram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-11-06 12:01:41 +0000
commitc4b5c1df7473102f83832aba19578c7a28a53d05 (patch)
treed93c214d9f5134c99184896fd2b35120d2e02b53 /manifests
parent00503ad90e7650269a6e122d143a29f3110179fe (diff)
shorewall: default config von website
git-svn-id: https://svn/ipuppet/trunk/modules/shorewall@41 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index e38848d..ba87bca 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -22,7 +22,7 @@ class shorewall {
package { shorewall: ensure => installed }
- # service { shorewall: ensure => running, enable => true, }
+ service { shorewall: ensure => running, enable => true, }
# private
define managed_file () {
@@ -56,11 +56,11 @@ class shorewall {
# This file has to be managed in place, so shorewall can find it
file { "/etc/shorewall/shorewall.conf":
- # use OS specific defaults, but use Debian/etch if no other is found
+ # use OS specific defaults, but use gentoo if no other is found
source => [
"puppet://$servername/shorewall/shorewall.conf.$operatingsystem.$lsbdistcodename",
"puppet://$servername/shorewall/shorewall.conf.$operatingsystem",
- "puppet://$servername/shorewall/shorewall.conf.Debian.etch" ],
+ "puppet://$servername/shorewall/shorewall.conf.gentoo" ],
mode => 0644, owner => root, group => root,
}