diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-12-30 13:34:31 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-12-30 13:34:31 -0200 |
commit | 1e53f6be6cb823a08c1a544e20d8f0c6543a3fea (patch) | |
tree | d6d5ace4f1f86f164a940edfcee568cde5200149 /manifests/header_checks_snippet.pp | |
parent | c760c9cc29afc2fb5f466fba7047e43c9dd0ef88 (diff) | |
download | puppet-postfix-1e53f6be6cb823a08c1a544e20d8f0c6543a3fea.tar.gz puppet-postfix-1e53f6be6cb823a08c1a544e20d8f0c6543a3fea.tar.bz2 |
Fix 'No content, source or symlink specified' concat error
Diffstat (limited to 'manifests/header_checks_snippet.pp')
-rw-r--r-- | manifests/header_checks_snippet.pp | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/manifests/header_checks_snippet.pp b/manifests/header_checks_snippet.pp index 05929a3..82ead84 100644 --- a/manifests/header_checks_snippet.pp +++ b/manifests/header_checks_snippet.pp @@ -44,17 +44,13 @@ define postfix::header_checks_snippet ( concat::fragment { "$fragment": ensure => "$ensure", target => '/etc/postfix/header_checks', + source => $source ? { + undef => undef, + default => $source, + }, + content => $content ? { + undef => undef, + default => $content, + }, } - - if $source { - Concat::Fragment["$fragment"] { - source => $source, - } - } - else { - Concat::Fragment["$fragment"] { - content => $content, - } - } - } |