summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7a6b01f..c7646a9 100644
--- a/README.md
+++ b/README.md
@@ -122,9 +122,13 @@ Convience classes
postfix::config
---------------
-this can be used to pass arbitrary postfix configurations by passing the $name
+This can be used to pass arbitrary postfix configurations by passing the $name
to postconf to add/alter/remove options in main.cf
+It can also be used to ensure that a certain configuration is not present by
+setting the ensure parameter to absent. In this case, the value parameter is
+still mandatory but can be set to whatever value.
+
Parameters:
- *name*: name of the parameter.
- *ensure*: present/absent. defaults to present.
@@ -144,6 +148,11 @@ Example usage:
"relayhost" => "[mail.example.com]:587";
}
+ postfix::config { 'smtp_tls_cert_file':
+ ensure => absent,
+ value => '',
+ }
+
postfix::disable
----------------