Puppet Class: conf::setup::apt

Inherits:
conf::config::apt
Defined in:
manifests/setup/apt.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include conf::setup::apt


7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'manifests/setup/apt.pp', line 7

class conf::setup::apt() inherits conf::config::apt {
  Package['apt'] {
    ensure => latest,
  }

  File['/etc/cron.daily/apt'] {
    ensure  => present,
  }

  File['/etc/apt/apt.conf.d/02periodic'] {
    source  => "puppet:///modules/conf/apt_conf_${::lsbdistcodename}_02periodic",
  }
}