diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-25 14:03:24 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-25 14:03:24 -0200 |
commit | 8b78b15e57c4b802be46c540a16be42fd23435f5 (patch) | |
tree | 7f5b17dcf1da2de3626d3105c961534b16c1db87 /manifests/tlspolicy_snippet.pp | |
parent | 5e806b99e2448dfb4bcd880b3c77578e1a15c8aa (diff) | |
download | puppet-postfix-8b78b15e57c4b802be46c540a16be42fd23435f5.tar.gz puppet-postfix-8b78b15e57c4b802be46c540a16be42fd23435f5.tar.bz2 |
Switching to parametrized classes
Diffstat (limited to 'manifests/tlspolicy_snippet.pp')
-rw-r--r-- | manifests/tlspolicy_snippet.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/tlspolicy_snippet.pp b/manifests/tlspolicy_snippet.pp index 701528b..b63f812 100644 --- a/manifests/tlspolicy_snippet.pp +++ b/manifests/tlspolicy_snippet.pp @@ -16,8 +16,9 @@ Requires: Example usage: node "toto.example.com" { - $postfix_manage_tls_policy = yes - include postfix + class { 'postfix': + manage_tls_policy => 'yes', + } postfix::tlspolicy_snippet { 'example.com': value => 'encrypt'; '.example.com': value => 'encrypt'; |