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
22 lines
518 B
Puppet
22 lines
518 B
Puppet
class apt::dot_d_directories {
|
|
|
|
# watch .d directories and ensure they are present
|
|
file {
|
|
'/etc/apt/apt.conf.d':
|
|
ensure => directory,
|
|
checksum => mtime,
|
|
notify => Exec['refresh_apt'];
|
|
'/etc/apt/sources.list.d':
|
|
ensure => directory,
|
|
checksum => mtime,
|
|
notify => Exec['refresh_apt'];
|
|
}
|
|
|
|
exec {
|
|
# "&& sleep 1" is workaround for older(?) clients
|
|
'refresh_apt':
|
|
command => '/usr/bin/apt-get update && sleep 1',
|
|
refreshonly => true,
|
|
}
|
|
|
|
}
|