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