Puppet Class: conf::setup

Inherits:
conf
Defined in:
manifests/setup.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include conf::setup


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

class conf::setup() inherits conf {
  # depending on OS version, include default service system
  case $::lsbdistcodename {
    'wheezy' : { contain conf::setup::sysvinit }
    default  : { contain conf::setup::systemd }
  }

  contain conf::setup::cron
  contain conf::setup::apt
  contain conf::setup::wget
  contain conf::setup::git
  contain conf::setup::expect
}