blob: 32f8c9663a48c1cf66def318f884765ece414dad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Class: roles::monitor
# =====================
#
# This class defines the monitor role for the monitoring server. You should
# assign this class using hiera or via an ENC.
#
# Examples
# --------
#
# @example
# class { 'roles::monitor': }
#
# Authors
# -------
#
# Jan Dittberner <jandd@cacert.org>
#
# Copyright
# ---------
#
# Copyright 2018-2019 Jan Dittberner
#
class roles::monitor {
include profiles::base
include profiles::rsyslog
include profiles::purge_nrpe_agent
include profiles::icinga2_master
}
|