module-apt/manifests/default_preferences.pp

19 lines
585 B
ObjectPascal
Raw Normal View History

2009-10-30 20:20:42 +01:00
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"];
}
}
'ubuntu': {
notice('There is no support for default Ubuntu APT preferences')
}
2009-10-30 20:20:42 +01:00
}
}