summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apt/manifests/init.pp
blob: 8821c110698a02272d2213e47d2442d8c4cb52ef (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
36
37
38
39
40
41
42
class site_apt  {

  # on couchdb we need to include squeeze in apt preferences,
  # so the cloudant package can pull some packages from squeeze
  # template() must be unquoted !
  if 'couchdb' in $::services {
    $custom_preferences = template("site_apt/preferences.include_squeeze")
  } else {
    $custom_preferences = ''
  }
  class { 'apt':
    custom_preferences => $custom_preferences,
    custom_key_dir     => 'puppet:///modules/site_apt/keys'
  }

  # enable http://deb.leap.se debian package repository
  include site_apt::leap_repo

  apt::apt_conf { '90disable-pdiffs':
    content => 'Acquire::PDiffs "false";';
  }

  include ::apt::unattended_upgrades

  apt::sources_list { 'secondary.list.disabled':
    content => template('site_apt/secondary.list');
  }

  apt::preferences_snippet { 'facter':
    release  => "${::lsbdistcodename}-backports",
    priority => 999
  }

  # All packages should be installed _after_ refresh_apt is called,
  # which does an apt-get update.
  # There is one exception:
  # The creation of sources.list depends on the lsb package

  File['/etc/apt/preferences'] ->
    Exec['refresh_apt']
    Package <| ( title != 'lsb' ) |>
}