blob: d6bd462dca56e49b5e1afba4daa021318e55b4a6 (
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::emailout
# ======================
#
# This class defines the emailout role for the outgoing mail relay. You should
# assign this class using hiera or via an ENC.
#
# Examples
# --------
#
# @example
# class { 'roles::emailout': }
#
# Authors
# -------
#
# Jan Dittberner <jandd@cacert.org>
#
# Copyright
# ---------
#
# Copyright 2018-2019 Jan Dittberner
#
class roles::emailout {
include profiles::base
include profiles::rsyslog
include profiles::purge_nrpe_agent
include profiles::icinga2_agent
}
|