Puppet Class: sendmail::mc::local_config_section

Defined in:
manifests/mc/local_config_section.pp

Summary

Add a section header to improve readability of the config file

Overview



6
7
8
9
10
11
12
# File 'manifests/mc/local_config_section.pp', line 6

class sendmail::mc::local_config_section {
  concat::fragment { 'sendmail_mc-local_config_header':
    target  => 'sendmail.mc',
    order   => '80',
    content => "dnl #\nLOCAL_CONFIG\n",
  }
}