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
|
# File 'manifests/mod/nss.pp', line 18
class apache::mod::nss (
Stdlib::Absolutepath $transfer_log = "${apache::params::logroot}/access.log",
Stdlib::Absolutepath $error_log = "${apache::params::logroot}/error.log",
Optional[String] $passwd_file = undef,
Stdlib::Port $port = 8443,
) {
include apache
include apache::mod::mime
apache::mod { 'nss': }
$httpd_dir = $apache::httpd_dir
# Template uses:
# $transfer_log
# $error_log
# $http_dir
# passwd_file
$parameters = {
'port' => $port,
'passwd_file' => $passwd_file,
'error_log' => $error_log,
'transfer_log' => $transfer_log,
'httpd_dir' => $httpd_dir,
}
file { 'nss.conf':
ensure => file,
path => "${apache::mod_dir}/nss.conf",
mode => $apache::file_mode,
content => epp('apache/mod/nss.conf.epp', $parameters),
require => Exec["mkdir ${apache::mod_dir}"],
before => File[$apache::mod_dir],
notify => Class['apache::service'],
}
}
|