blob: f1f6fe716ecb87a21fd02c74b5c04ab3160be327 (
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
|
# Class: roles::infra03
# =====================
#
# This class defines the infra03 role for the infra03 infrastructure host. You
# should assign this class using hiera or via an ENC.
#
# Examples
# --------
#
# @example
# class { 'roles::infra03': }
#
# Authors
# -------
#
# Jan Dittberner <jandd@cacert.org>
#
# Copyright
# ---------
#
# Copyright 2021 Jan Dittberner
#
class roles::infra03 {
include profiles::base
include profiles::lxc_host
#include profiles::icinga2_satellite
}
|