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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
class network_test_server::linux::squid {
package { "squid3":
ensure => present,
require => File[
"/home/qt-test-server/passwords",
"/etc/init.d/squid3-authenticating-ntlm"
],
}
# make sure we use only squid3
# Although it may be allowed for both to be installed, it's simply confusing
package { "squid":
ensure => absent,
}
service {
"squid3":
enable => true,
ensure => running,
hasstatus=> false,
require => [ Package["squid3"], File["/etc/default/squid3", "/etc/squid3/squid.conf"] ],
pattern => '-f /etc/squid3/squid.conf',
;
"squid3-authenticating-ntlm":
enable => true,
ensure => running,
hasstatus=> false,
require => [ Package["squid3"], File["/etc/default/squid3", "/etc/squid3/squid-authenticating-ntlm.conf"] ],
pattern => '-f /etc/squid3/squid-authenticating-ntlm.conf',
;
}
file {
"/etc/squid3/squid.conf":
source => "puppet:///modules/network_test_server/config/squid/squid.conf",
require => Package["squid3"],
notify => Service["squid3"],
;
"/etc/squid3/squid-authenticating-ntlm.conf":
source => "puppet:///modules/network_test_server/config/squid/squid-authenticating-ntlm.conf",
require => Package["squid3"],
notify => Service["squid3-authenticating-ntlm"],
;
"/etc/init.d/squid3-authenticating-ntlm":
ensure => "/etc/init.d/squid3",
;
"/etc/default/squid3":
source => "puppet:///modules/network_test_server/config/squid/etc_default_squid",
require => Package["squid3"],
notify => Service["squid3", "squid3-authenticating-ntlm"],
;
}
}
|