Puppet Class: role::matomo
- Defined in:
- modules/role/manifests/matomo.pp
Overview
SPDX-License-Identifier: Apache-2.0
Class: role::matomo
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'modules/role/manifests/matomo.pp', line 4
class role::matomo {
system::role { 'matomo':
description => 'Matomo analytics server',
}
include profile::base::production
include profile::firewall
include profile::matomo::webserver
include profile::tlsproxy::envoy
include profile::matomo::instance
# override profile::backup::enable to disable regular backups
include profile::analytics::backup::database
include profile::matomo::database
}
|