Puppet Class: role::piwik

Defined in:
modules/role/manifests/piwik.pp

Overview

Class: role::piwik



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'modules/role/manifests/piwik.pp', line 3

class role::piwik {

    system::role { 'piwik':
        description => 'Analytics Piwik/Matomo server',
    }

    include ::profile::base::production
    include ::profile::firewall

    include ::profile::piwik::webserver
    include ::profile::tlsproxy::envoy
    include ::profile::piwik::instance
    # override profile::backup::enable to disable regular backups
    include ::profile::analytics::backup::database
    include ::profile::piwik::database

}