Puppet Class: apache::mod::alias
  Summary
  Installs and configures `mod_alias`.
Overview
  
    
      
        
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 
       | 
      
        # File 'manifests/mod/alias.pp', line 21
class apache::mod::alias (
  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::mod { 'alias': }
  # Template uses $icons_path
  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'],
    }
  }
}
       |