Puppet Class: statistics

Defined in:
modules/statistics/manifests/init.pp

Overview

Class statistics

Base wrapper class for stat servers. All stat servers should include this class.

Parameters

$servers        - list of statistics servers.
                  These will be granted rsync read and
                  write access between each other.

Parameters:

  • servers (Any)


9
10
11
12
13
14
15
16
17
18
19
20
# File 'modules/statistics/manifests/init.pp', line 9

class statistics(
    $servers,
) {
    include ::statistics::user

    # Ensure /srv/log exists.
    file { '/srv/log':
        ensure => 'directory',
    }

    $working_path = '/srv'
}