Puppet Class: updates::ubuntu

Defined in:
manifests/ubuntu.pp

Overview

Set up automatic upgrades via apt



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/ubuntu.pp', line 3

class updates::ubuntu (
) {
  $bootdelay = $updates::bootdelay
  $frequency = $updates::frequency

  file { '/etc/systemd/system/automatic-upgrades.service':
    ensure  => file,
    content => template('updates/ubuntu-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,
  }
}