aboutsummaryrefslogtreecommitdiff
path: root/manifests/default_preferences.pp
blob: 4752fad36a86dd459f6abbe26b87a3ff0d70b14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class apt::default_preferences {
  config_file {
    # this just pins unstable and testing to very low values
    "/etc/apt/preferences":
      content => template("apt/preferences.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"];
  }
}