Defined Type: sendmail::mc::ostype
- Defined in:
- manifests/mc/ostype.pp
Summary
Add the `OSTYPE` macro to the sendmail.mc file.Overview
11 12 13 14 15 16 17 18 19 |
# File 'manifests/mc/ostype.pp', line 11
define sendmail::mc::ostype (
String $ostype = $name,
) {
concat::fragment { "sendmail_mc-ostype-${ostype}":
target => 'sendmail.mc',
order => '05',
content => "OSTYPE(`${ostype}')dnl\n",
}
}
|