Puppet Class: pacman::automaticupgrades

Defined in:
manifests/automaticupgrades.pp

Overview

Set up automatic upgrades via pacman

Parameters:

  • bootdelay (Any) (defaults to: '1min')
  • frequency (Any) (defaults to: '86400')


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
# File 'manifests/automaticupgrades.pp', line 3

class pacman::automaticupgrades (
  $bootdelay = '1min',
  $frequency = '86400'
) {
  file { '/etc/systemd/system/automatic-upgrades.service':
    ensure  => 'file',
    content => template('pacman/automatic-upgrades.service.erb'),
    notify  =>  Exec['automatic-upgrades refresh systemd']
  }

  file { '/etc/systemd/system/automatic-upgrades.timer':
    ensure  => 'file',
    content => template('pacman/automatic-upgrades.timer.erb'),
    notify  =>  Exec['automatic-upgrades refresh systemd']
  }

  file { '/etc/systemd/system/multi-user.target.wants/automatic-upgrades.timer':
    ensure  => 'link',
    target  => '/etc/systemd/system/automatic-upgrades.timer',
    require => File['/etc/systemd/system/automatic-upgrades.timer'],
    notify  =>  Exec['automatic-upgrades refresh systemd']
  }

  exec { 'automatic-upgrades refresh systemd':
    command     => 'systemctl daemon-reload',
    refreshonly => true,
    path        => ['/usr/bin', '/bin']
  }
  ~> exec { 'Start automatic-upgrades':
    command     => 'systemctl start automatic-upgrades.timer',
    refreshonly => true,
    path        => ['/usr/bin', '/bin']
  }
}