diff options
author | intrigeri <intrigeri@boum.org> | 2016-09-22 09:25:12 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2016-09-22 09:25:12 +0000 |
commit | e62fc0c0e5748230859479b28c820721436fc0e1 (patch) | |
tree | da2caa9ba383ad899cc2076e075ce85e41a29171 | |
parent | 969076a813b88dafd222c413bf6fbabab837eafb (diff) | |
download | puppet-postfix-e62fc0c0e5748230859479b28c820721436fc0e1.tar.gz puppet-postfix-e62fc0c0e5748230859479b28c820721436fc0e1.tar.bz2 |
Subscribe to the Concat resource instead of the File one.
This is needed with recent versions of the concat module.
-rw-r--r-- | manifests/tlspolicy.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/tlspolicy.pp b/manifests/tlspolicy.pp index d901710..bf96503 100644 --- a/manifests/tlspolicy.pp +++ b/manifests/tlspolicy.pp @@ -30,7 +30,7 @@ class postfix::tlspolicy( postfix::hash { '/etc/postfix/tls_policy': source => "$postfix_merged_tlspolicy", - subscribe => File["$postfix_merged_tlspolicy"], + subscribe => Concat["$postfix_merged_tlspolicy"], } postfix::config { |