aboutsummaryrefslogtreecommitdiff
path: root/manifests/classes/postfix-tlspolicy.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-02-16 16:51:56 +0100
committerSilvio Rhatto <rhatto@riseup.net>2012-04-07 13:56:47 -0300
commit59010a1c304801db6423f67d656399478fc603f0 (patch)
tree2ff29f6c26451f2dd62f53a3a5abb5b09bef7ab4 /manifests/classes/postfix-tlspolicy.pp
parent462db65ec48b6398c9a04a88cc4c197eb73f34fa (diff)
downloadpuppet-postfix-59010a1c304801db6423f67d656399478fc603f0.tar.gz
puppet-postfix-59010a1c304801db6423f67d656399478fc603f0.tar.bz2
put classes and defines in the proper place
To take advantage of puppet's autoloading feature, which will be mandatory sooner or later. We move all the files in their appropriate place.
Diffstat (limited to 'manifests/classes/postfix-tlspolicy.pp')
-rw-r--r--manifests/classes/postfix-tlspolicy.pp71
1 files changed, 0 insertions, 71 deletions
diff --git a/manifests/classes/postfix-tlspolicy.pp b/manifests/classes/postfix-tlspolicy.pp
deleted file mode 100644
index 633c380..0000000
--- a/manifests/classes/postfix-tlspolicy.pp
+++ /dev/null
@@ -1,71 +0,0 @@
-#
-# == Class: postfix::tlspolicy
-#
-# Manages Postfix TLS policy by merging policy snippets shipped:
-# - in the module's files/tls_policy.d/ or puppet:///files/etc/postfix/tls_policy.d
-# (the latter takes precedence if present); site-postfix module is supported
-# as well, see the source argument of file {"$postfix_tlspolicy_snippets_dir"
-# bellow for details.
-# - via postfix::tlspolicy_snippet defines
-#
-# Parameters:
-# - $postfix_tls_fingerprint_digest (defaults to sha1)
-#
-# Example usage:
-#
-# node "toto.example.com" {
-# $postfix_manage_tls_policy = yes
-# include postfix
-# }
-#
-class postfix::tlspolicy {
-
- # Default value for parameters
- case $postfix_tls_fingerprint_digest {
- "": { $postfix_tls_fingerprint_digest = 'sha1' }
- }
-
- include common::moduledir
- module_dir{'postfix/tls_policy': }
-
- $postfix_tlspolicy_dir = "${common::moduledir::module_dir_path}/postfix/tls_policy"
- $postfix_tlspolicy_snippets_dir = "${postfix_tlspolicy_dir}/tls_policy.d"
- $postfix_merged_tlspolicy = "${postfix_tlspolicy_dir}/merged_tls_policy"
-
- file {"$postfix_tlspolicy_snippets_dir":
- ensure => 'directory',
- owner => 'root',
- group => '0',
- mode => '700',
- source => [
- "puppet:///modules/site-postfix/${fqdn}/tls_policy.d",
- "puppet:///modules/site-postfix/tls_policy.d",
- "puppet:///modules/postfix/tls_policy.d",
- ],
- recurse => true,
- purge => false,
- }
-
- concatenated_file { "$postfix_merged_tlspolicy":
- dir => "${postfix_tlspolicy_snippets_dir}",
- require => File["$postfix_tlspolicy_snippets_dir"],
- }
-
- postfix::hash { '/etc/postfix/tls_policy':
- source => "$postfix_merged_tlspolicy",
- subscribe => File["$postfix_merged_tlspolicy"],
- }
-
- postfix::config {
- 'smtp_tls_fingerprint_digest': value => "$postfix_tls_fingerprint_digest";
- }
-
- postfix::config { 'smtp_tls_policy_maps':
- value => 'hash:/etc/postfix/tls_policy',
- require => [
- Postfix::Hash['/etc/postfix/tls_policy'],
- Postfix::Config['smtp_tls_fingerprint_digest'],
- ],
- }
-
-}