diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-07-28 22:30:14 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-07-28 22:30:14 +0200 |
commit | b5daf37f490bb48fd524ae799f215e68de86fd39 (patch) | |
tree | 695fc033911ca8aae6f4287fe3f87b3fb44432ba | |
parent | 645c7810b6df623b455d74f2897dc199e09a4b41 (diff) | |
download | cacert-puppet-b5daf37f490bb48fd524ae799f215e68de86fd39.tar.gz cacert-puppet-b5daf37f490bb48fd524ae799f215e68de86fd39.tar.xz cacert-puppet-b5daf37f490bb48fd524ae799f215e68de86fd39.zip |
Fix Apt::Update order for icinga2 packages
-rw-r--r-- | sitemodules/profiles/manifests/icinga2_common.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sitemodules/profiles/manifests/icinga2_common.pp b/sitemodules/profiles/manifests/icinga2_common.pp index be6ffa8..caeb498 100644 --- a/sitemodules/profiles/manifests/icinga2_common.pp +++ b/sitemodules/profiles/manifests/icinga2_common.pp @@ -37,6 +37,6 @@ class profiles::icinga2_common ( priority => 500, release => 'stretch-backports', } - Apt::Pin['icinga2_backports'] -> Package <| name == 'icinga2' or name == 'icinga2-ido-pgsql' |> + Apt::Pin['icinga2_backports'] -> Class['Apt::Update'] -> Package <| tag == 'icinga2' or tag == 'icinga2-ido-pgsql' |> } } |