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