Puppet Class: postfix::mynetworks
- Defined in:
- manifests/mynetworks.pp
Summary
manage the mynetworks tableOverview
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'manifests/mynetworks.pp', line 13
class postfix::mynetworks (
# you may want to switch to cidr
$type = 'hash',
) {
$etc_dir = $::postfix::install::etc_dir
$path = "${etc_dir}/mynetworks"
postfix::postmap { $path:
description => 'postfix mynetworks table',
type => $type,
}
}
|