blob: d495a418ddd9c1adfb04d193b0637f56be3c657d (
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
|
# Class: roles::proxyin
# =====================
#
# This class defines the inproxy role for incoming proxy servers. You should
# assign this class using hiera or via an ENC.
#
# Examples
# --------
#
# @example
# class { 'roles::proxyin': }
#
# Authors
# -------
#
# Jan Dittberner <jandd@cacert.org>
#
# Copyright
# ---------
#
# Copyright 2017 Jan Dittberner
#
class roles::proxyin {
include profiles::base
include profiles::sniproxy
}
|