Puppet Class: postfix::mynetworks

Defined in:
manifests/mynetworks.pp

Overview

Parameters:

  • type (Any) (defaults to: 'hash')


1
2
3
4
5
6
7
8
9
10
11
12
# File 'manifests/mynetworks.pp', line 1

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,
  }
}