Displaying 1 result from an estimated 1 matches for "cf_dir".
Did you mean:
ca_dir
2007 Sep 04
9
exec creates and subscribe
...have the following test case:
file { sendmail-conf:
path => "/etc/mail/${fqdn}.mc",
owner => "root",
group => "wheel",
mode => 0644,
links => follow,
source => "puppet:///sendmail/${hostname}.mc"
}
$mail_dir = "/etc/mail"
$cf_dir = "/usr/share/sendmail/cf/"
exec { build-conf:
command => "/usr/bin/m4 -D_CF_DIR_=${cf_dir} ${cf_dir}/m4/cf.m4 ${fqdn}.mc > sendmail.cf",
cwd => "$mail_dir",
logoutput => true,
subscribe => File[sendmail-conf],
creates => "${maildir}/sendmai...