Puppet Class: updates::archlinux
- Defined in:
- manifests/archlinux.pp
Overview
Set up automatic upgrades via pacman
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'manifests/archlinux.pp', line 3
class updates::archlinux (
) {
$bootdelay = $updates::bootdelay
$frequency = $updates::frequency
file { '/etc/systemd/system/automatic-upgrades.service':
ensure => file,
content => template('updates/automatic-upgrades.service.erb'),
notify => Service['automatic-upgrades.timer'],
}
file { '/etc/systemd/system/automatic-upgrades.timer':
ensure => file,
content => template('updates/automatic-upgrades.timer.erb'),
notify => Service['automatic-upgrades.timer'],
}
service { 'automatic-upgrades.timer':
ensure => running,
enable => true,
}
file { '/etc/systemd/system/pacman-cache-clean.service':
ensure => file,
source => 'puppet:///modules/updates/pacman-cache-clean.service',
notify => Service['pacman-cache-clean.timer'],
}
file { '/etc/systemd/system/pacman-cache-clean.timer':
ensure => file,
source => 'puppet:///modules/updates/pacman-cache-clean.timer',
notify => Service['pacman-cache-clean.timer'],
}
service { 'pacman-cache-clean.timer':
ensure => running,
enable => true,
}
}
|