Defined Type: postfix::alias
- Defined in:
- manifests/alias.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/alias.pp', line 1
define postfix::alias(
$to,
$from = $name,
$order = '42',
$comment = undef,
) {
include ::postfix
concat::fragment{ "${postfix::alias_maps} ${from} ${to}":
target => $postfix::alias_maps,
order => $order,
content => template("${module_name}/aliases/alias.erb"),
}
}
|