summaryrefslogtreecommitdiff
path: root/manifests/base.pp
diff options
context:
space:
mode:
authorVarac <varacanero@zeromail.org>2009-12-07 00:19:40 +0100
committermh <mh@immerda.ch>2009-12-07 17:49:49 +0100
commit8f74917a53b9363265b3eef61e9086f3dd4e6b2b (patch)
treec04ae4c18ac0edd033fbf11aef7aeb27cf7914b7 /manifests/base.pp
parent0ae7670f8ed783d95d165eb58221d283c4800652 (diff)
Added Ubuntu Support. That means installed package is now shorewall-shell instead of shorewall (which is dummy package for shorewall-shell anyway).
Diffstat (limited to 'manifests/base.pp')
-rw-r--r--manifests/base.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/base.pp b/manifests/base.pp
index c814795..8a3d5c3 100644
--- a/manifests/base.pp
+++ b/manifests/base.pp
@@ -1,5 +1,5 @@
class shorewall::base {
- package { 'shorewall':
+ package { 'shorewall-shell':
ensure => present,
}
@@ -16,7 +16,7 @@ class shorewall::base {
"puppet://$server/modules/shorewall/shorewall.conf.$operatingsystem",
"puppet://$server/modules/shorewall/shorewall.conf"
],
- require => Package[shorewall],
+ require => Package[shorewall-shell],
notify => Service[shorewall],
owner => root, group => 0, mode => 0644;
}
@@ -40,6 +40,6 @@ class shorewall::base {
Exec["concat_/var/lib/puppet/modules/shorewall/routestopped"],
Exec["concat_/var/lib/puppet/modules/shorewall/params"]
],
- require => Package[shorewall],
+ require => Package[shorewall-shell],
}
}