Puppet Class: sendmail::mc::mailer_section
- Defined in:
- manifests/mc/mailer_section.pp
Overview
Class: sendmail::mc::mailer_section
Add a section header above the mailer macros
Parameters:
None.
Requires:
Nothing.
Sample Usage:
class { 'sendmail::mc::mailer_section': }
18 19 20 21 22 23 24 |
# File 'manifests/mc/mailer_section.pp', line 18
class sendmail::mc::mailer_section {
concat::fragment { 'sendmail_mc-mailer_header':
target => 'sendmail.mc',
order => '60',
content => "dnl #\ndnl # Mailer\ndnl #\n",
}
}
|