In regard to: Re: [Puppet Users] mixing source & content (templates) in...:
All-
We're using puppet 2.7.11.
Our custom firewall module currently builds the RHEL
/etc/sysconfig/iptables (and ip6tables) from multiple fragments using
concat::fragment.
The base part of the firewall is constructed like this:
class firewall {
include concat::setup
$firewall_config = '/etc/sysconfig/iptables'
concat::fragment { "firewall-base":
target => "$firewall_config",
source => [
"puppet:///modules/firewall/firewall-base.$fqdn",
"puppet:///modules/firewall/firewall-base"
],
order => '01',
}
concat::fragment {"firewall-end":
target => "$firewall_config",
content => "COMMIT\n",
order => '99',
}
}
As you can see, we use source to look for a per-box custom firewall
base first, and then fall back to a stock firewall-base file fragment.
I want to modify this config so that the fall-back fragment comes
from a template, rather than a file fragment. The problem is that it
appears I can't do this:
the file type in puppet does not provide a way to do this, so unfortunately
the concat cant do it either - since its just relying on the file type
Thanks R.I. (and thanks for concat). I guess I'll switch all of our
host-specific base fragments to be a templates, even when there's no
template code in them, and use
concat::fragment { 'firewall-base':
target => $firewall_config,
content => [
template("firewall/firewall-base.${::fqdn}.erb"),
template('firewall/firewall-base'),
],
order => '01',
}
Tim
--
Tim Mooney tim.moo...@ndsu.edu
Enterprise Computing & Infrastructure 701-231-1076 (Voice)
Room 242-J6, IACC Building 701-231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164
--
You received this message because you are subscribed to the Google Groups "Puppet
Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.