summaryrefslogtreecommitdiff
path: root/manifests/default_preferences.pp
blob: 28471b954b2d17e4a4fb546f5bda58d1aeba132b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class apt::default_preferences {
  case $operatingsystem {
    'debian': {
      config_file {
        "/etc/apt/preferences":
          content => template("apt/${operatingsystem}/preferences_${codename}.erb"),
          # use File[apt_config] to reference a completed configuration
          # See "The Puppet Semaphor" 2007-06-25 on the puppet-users ML
          alias => apt_config,
          # only update together
          require => File["/etc/apt/sources.list"];
        # little default settings which keep the system sane
        "/etc/apt/apt.conf.d/99from_puppet":
          content => "APT::Get::Show-Upgraded true;\nDSelect::Clean $real_apt_clean;\n",
          before => Config_file[apt_config];
      }
    }
    'ubuntu': {
      notice('There is no support for default Ubuntu APT preferences')
    }
  }
}