Missing a repository? Have a look at https://code.cacert.org/.

summaryrefslogtreecommitdiff
blob: ac4001b9c58f996992482e13bd4d21f9a932d0e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Class: profiles::icinga2_common
# ===============================
#
# Common configuration code for Icinga2 agent and master setups.
#
# Authors
# -------
#
# Jan Dittberner <jandd@cacert.org>
#
# Copyright
# ---------
#
# Copyright 2019 Jan Dittberner
class profiles::icinga2_common (
) {
  if $::lsbdistcodename == 'stretch' {
    apt::pin { 'icinga2_backports':
      packages => [
        'icinga2',
        'icinga2-bin',
        'icinga2-common',
        'icinga2-doc',
        'icinga2-ido-pgsql',
        'libicinga2',
      ],
      priority => 500,
      release  => 'stretch-backports',
      before   => Package['icinga2', 'icinga2-ido-pgsql'],
    }
    package { 'icinga2':
      ensure => latest,
    }
  }
}