ded81d8edc
Signed-off-by: Gabriel Filion <lelutin@gmail.com> + more linting by intrigeri. Conflicts: manifests/apticron.pp manifests/cron/dist_upgrade.pp manifests/cron/download.pp manifests/dist_upgrade/initiator.pp manifests/init.pp manifests/listchanges.pp manifests/preferences.pp manifests/preseeded_package.pp manifests/proxy_client.pp manifests/unattended_upgrades.pp manifests/update.pp
13 lines
361 B
Puppet
13 lines
361 B
Puppet
class apt::update {
|
|
|
|
exec { 'update_apt':
|
|
command => '/usr/bin/apt-get update && /usr/bin/apt-get autoclean',
|
|
require => [
|
|
File['/etc/apt/apt.conf.d', '/etc/apt/preferences' ],
|
|
File['/etc/apt/sources.list'] ],
|
|
loglevel => info,
|
|
# Another Semaphor for all packages to reference
|
|
alias => 'apt_updated'
|
|
}
|
|
|
|
}
|