diff options
author | Varac <varacanero@zeromail.org> | 2009-12-07 00:19:40 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2009-12-07 17:49:49 +0100 |
commit | 8f74917a53b9363265b3eef61e9086f3dd4e6b2b (patch) | |
tree | c04ae4c18ac0edd033fbf11aef7aeb27cf7914b7 /manifests/base.pp | |
parent | 0ae7670f8ed783d95d165eb58221d283c4800652 (diff) | |
download | puppet-shorewall-8f74917a53b9363265b3eef61e9086f3dd4e6b2b.tar.gz puppet-shorewall-8f74917a53b9363265b3eef61e9086f3dd4e6b2b.tar.bz2 |
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.pp | 6 |
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], } } |