24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'manifests/mod/alias.pp', line 24
class apache::mod::alias (
Optional[String] $apache_version = undef,
String $icons_options = 'Indexes MultiViews',
# set icons_path to false to disable the alias
Variant[Boolean, Stdlib::Absolutepath] $icons_path = $apache::params::alias_icons_path,
String $icons_prefix = $apache::params::icons_prefix
) inherits apache::params {
include apache
$_apache_version = pick($apache_version, $apache::apache_version)
apache::mod { 'alias': }
# Template uses $icons_path, $_apache_version
if $icons_path {
file { 'alias.conf':
ensure => file,
path => "${apache::mod_dir}/alias.conf",
mode => $apache::file_mode,
content => template('apache/mod/alias.conf.erb'),
require => Exec["mkdir ${apache::mod_dir}"],
before => File[$apache::mod_dir],
notify => Class['apache::service'],
}
}
}
|