diff options
Diffstat (limited to 'manifests/definitions/transport.pp')
-rw-r--r-- | manifests/definitions/transport.pp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/manifests/definitions/transport.pp b/manifests/definitions/transport.pp index 0e462cb..cf44faf 100644 --- a/manifests/definitions/transport.pp +++ b/manifests/definitions/transport.pp @@ -1,3 +1,38 @@ +/* +== Definition: postfix::transport + +Manages content of the /etc/postfix/transport map. + +Parameters: +- *name*: name of address postfix will lookup. See transport(5). +- *destination*: where the emails will be delivered to. See transport(5). +- *ensure*: present/absent + +Requires: +- Class["postfix"] +- Postfix::Hash["/etc/postfix/transport"] +- Postfix::Config["transport_maps"] +- common::line (from module common) + +Example usage: + + node "toto.example.com" { + + include postfix + + postfix::hash { "/etc/postfix/transport": + ensure => present, + } + postfix::config { "transport_maps": + value => "hash:/etc/postfix/transport" + } + postfix::transport { "mailman.example.com": + ensure => present, + destination => "mailman", + } + } + +*/ define postfix::transport ($ensure, $destination) { line {"${name} ${destination}": ensure => present, |