blob: 049401bfc063e5da6235ece4876c697e9510c6c9 (
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
29
30
31
32
33
34
|
# Class: profiles::squid.pp
# =========================
#
# This class defines a Squid proxy installation that allows outgoing http and
# https traffic to selected destinations.
#
# Parameters
# ----------
#
# @param acls a list of squid ACLs for regulating outgoing traffic
#
# Examples
# --------
#
# @example
# class roles::myhost {
# include profiles::squid
# }
#
# Authors
# -------
#
# Jan Dittberner <jandd@cacert.org>
#
# Copyright
# ---------
#
# Copyright 2017 Jan Dittberner
class profiles::squid (
Array[String] $acls = [],
) {
package { 'squid':
}
}
|