Hi guys,
I have the following which I use to set up
/etc/sysconfing/spamassassin. One of the options in this file sets the
listening interface to the IP address on eth0, and using a template
seemed like a perfect way to achieve this, and it does work very well
for the initial setup. It would also be nice for me to be able to
change the template, and have the file automatically update on the
clients, and for the service to be notified, but unfortunately, it
doesn't seem to work like that.
This is the relevant snippet from my module:
#sysconfig/spamassassin file - needs to use a template as spamassassin
#is configured to listen on it's own IP (uses ipaddress_eth0 from facter)
file { "/etc/sysconfig/spamassassin":
path => "/etc/sysconfig/spamassassin",
owner => root,
group => root,
mode => 644,
content =>
template("/etc/puppet/conf/development/modules/fh_spam_server/templates/etc_sysconfig_spamassassin.erb"),
require => Package["spamassassin"],
notify => Service["spamassassin"],
}
this is the contents of the template:
SPAMDOPTIONS="-d -L -i <%= ipaddress_eth0 -%> -A 10.44.217.0/20 -A
10.216.15.242/32 -A 10.216.1.14/32 -A 10.216.15.0/24 -A
213.171.193.103/32 -m 40 -q -x -u spamd --min-children=40"
When changing the template at, puppet doesn't seem to notice. I take it
that this file isn't md5sum'd in the same way as static files because in
a way the content is non-deterministic?
My question is, how could I achieve what I want, which is to edit this
file, and have it updated on the clients, and the spamassassin service
notified.
Many thanks. Tom.
--
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.