diff options
author | Micah Anderson <micah@riseup.net> | 2009-11-23 15:48:18 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-11-23 15:48:18 -0500 |
commit | c49625a4cd14a53d91b7d12aea88201a211a26a2 (patch) | |
tree | ea167ac9fb110a1464306a6827065ffeff32ec1b /manifests | |
parent | 33df59d5016a503c21495eedcc4c9e3cabf9e28c (diff) | |
download | puppet-shorewall-c49625a4cd14a53d91b7d12aea88201a211a26a2.tar.gz puppet-shorewall-c49625a4cd14a53d91b7d12aea88201a211a26a2.tar.bz2 |
switch the shorewall.conf source first hits to use the
$fileserver/shorewall location. this enables you to put these files in
your local fileserver area, without modifying the shorewall module. if
you dont need to do this, then the shorewall module defaults will be used instead
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index fbb8032..0bf0e9d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -276,11 +276,11 @@ class shorewall::base { file { "/etc/shorewall/shorewall.conf": # use OS specific defaults, but use Default if no other is found source => [ - "puppet://$server/files/shorewall/${fqdn}/shorewall.conf.$operatingsystem", - "puppet://$server/files/shorewall/${fqdn}/shorewall.conf", - "puppet://$server/files/shorewall/shorewall.conf.$operatingsystem.$lsbdistcodename", - "puppet://$server/files/shorewall/shorewall.conf.$operatingsystem", - "puppet://$server/files/shorewall/shorewall.conf", + "puppet://$fileserver/shorewall/${fqdn}/shorewall.conf.$operatingsystem", + "puppet://$fileserver/shorewall/${fqdn}/shorewall.conf", + "puppet://$fileserver/shorewall/shorewall.conf.$operatingsystem.$lsbdistcodename", + "puppet://$fileserver/shorewall/shorewall.conf.$operatingsystem", + "puppet://$fileserver/shorewall/shorewall.conf", "puppet://$server/modules/shorewall/shorewall.conf.$operatingsystem.$lsbdistcodename", "puppet://$server/modules/shorewall/shorewall.conf.$operatingsystem", "puppet://$server/modules/shorewall/shorewall.conf.Default" |