diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-08-02 09:22:23 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-08-02 09:22:23 +0200 |
commit | 9b52229dc1fe0dad2fe6ec36d444f822ee51c9f3 (patch) | |
tree | 8b4794498c554e431af4045e406f0e2ca8aa652f | |
parent | 5a97a53f9e6e7bc438530ab3dd4bb6b7a1340903 (diff) | |
download | cacert-puppet-9b52229dc1fe0dad2fe6ec36d444f822ee51c9f3.tar.gz cacert-puppet-9b52229dc1fe0dad2fe6ec36d444f822ee51c9f3.tar.xz cacert-puppet-9b52229dc1fe0dad2fe6ec36d444f822ee51c9f3.zip |
Fix syntax error in concat::fragment definitions
-rw-r--r-- | sitemodules/profiles/manifests/debarchive.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sitemodules/profiles/manifests/debarchive.pp b/sitemodules/profiles/manifests/debarchive.pp index 5d77d0f..1e15c5e 100644 --- a/sitemodules/profiles/manifests/debarchive.pp +++ b/sitemodules/profiles/manifests/debarchive.pp @@ -214,7 +214,7 @@ class profiles::debarchive ( } concat::fragment { 'stretch-distribution': - target => "${package_dir}/conf/distributions": + target => "${package_dir}/conf/distributions", content => join([ 'Origin: CAcert Infrastructure Team', 'Codename: stretch/cacert', @@ -225,7 +225,7 @@ class profiles::debarchive ( } content::fragment { 'buster-distribution': - target => "${package_dir}/conf/distributions": + target => "${package_dir}/conf/distributions", content => join([ 'Origin: CAcert Infrastructure Team', 'Codename: buster/cacert', |