Puppet Class: apache::mod::alias

Inherits:
::apache::params
Defined in:
manifests/mod/alias.pp

Overview

Parameters:

  • apache_version (Any) (defaults to: undef)
  • icons_options (Any) (defaults to: 'Indexes MultiViews')
  • icons_path (Any) (defaults to: $::apache::params::alias_icons_path)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/mod/alias.pp', line 1

class apache::mod::alias(
  $apache_version = undef,
  $icons_options  = 'Indexes MultiViews',
  # set icons_path to false to disable the alias
  $icons_path     = $::apache::params::alias_icons_path,
) 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'],
    }
  }
}