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