From 8a23f6d5b1022d79432734366e131af6f5d3b46f Mon Sep 17 00:00:00 2001 From: Marc Fournier Date: Fri, 28 Aug 2009 11:18:51 +0200 Subject: postfix: ensure had no default value in definitions. --- manifests/definitions/hash.pp | 4 ++-- manifests/definitions/transport.pp | 6 +++--- manifests/definitions/virtual.pp | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'manifests') diff --git a/manifests/definitions/hash.pp b/manifests/definitions/hash.pp index bb4156a..a0514ee 100644 --- a/manifests/definitions/hash.pp +++ b/manifests/definitions/hash.pp @@ -9,7 +9,7 @@ Note: the content of the file is not managed by this definition. Parameters: - *name*: the name of the map file. -- *ensure*: present/absent +- *ensure*: present/absent, defaults to present Requires: - Class["postfix"] @@ -29,7 +29,7 @@ Example usage: } */ -define postfix::hash ($ensure) { +define postfix::hash ($ensure="present") { # selinux labels differ from one distribution to another case $operatingsystem { diff --git a/manifests/definitions/transport.pp b/manifests/definitions/transport.pp index cf44faf..5ca5554 100644 --- a/manifests/definitions/transport.pp +++ b/manifests/definitions/transport.pp @@ -6,7 +6,7 @@ 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 +- *ensure*: present/absent, defaults to present. Requires: - Class["postfix"] @@ -33,9 +33,9 @@ Example usage: } */ -define postfix::transport ($ensure, $destination) { +define postfix::transport ($ensure="present", $destination) { line {"${name} ${destination}": - ensure => present, + ensure => $ensure, file => "/etc/postfix/transport", line => "${name} ${destination}", notify => Exec["generate /etc/postfix/transport.db"], diff --git a/manifests/definitions/virtual.pp b/manifests/definitions/virtual.pp index c40e64b..8fcd53a 100644 --- a/manifests/definitions/virtual.pp +++ b/manifests/definitions/virtual.pp @@ -6,7 +6,7 @@ Manages content of the /etc/postfix/virtual map. Parameters: - *name*: name of address postfix will lookup. See virtual(8). - *destination*: where the emails will be delivered to. See virtual(8). -- *ensure*: present/absent +- *ensure*: present/absent, defaults to present. Requires: - Class["postfix"] @@ -33,9 +33,9 @@ Example usage: } */ -define postfix::virtual ($ensure, $destination) { +define postfix::virtual ($ensure="present", $destination) { line {"${name} ${destination}": - ensure => present, + ensure => $ensure, file => "/etc/postfix/virtual", line => "${name} ${destination}", notify => Exec["generate /etc/postfix/virtual.db"], -- cgit v1.2.3