File: negotiation.pp

package info (click to toggle)
puppet-module-puppetlabs-apache 12.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,664 kB
  • sloc: ruby: 275; sh: 32; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,301 bytes parent folder | download
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
# @summary
#   Installs and configures `mod_negotiation`.
# 
# @param force_language_priority
#   Action to take if a single acceptable document is not found.
#
# @param language_priority
#   The precedence of language variants for cases where the client does not express a preference.
# 
# @see [https://httpd.apache.org/docs/current/mod/mod_negotiation.html for additional documentation.
#
class apache::mod::negotiation (
  Variant[Array[String], String] $force_language_priority = 'Prefer Fallback',
  Variant[Array[String], String] $language_priority = ['en', 'ca', 'cs', 'da', 'de', 'el', 'eo', 'es', 'et',
    'fr', 'he', 'hr', 'it', 'ja', 'ko', 'ltz', 'nl', 'nn',
    'no', 'pl', 'pt', 'pt-BR', 'ru', 'sv', 'zh-CN',
  'zh-TW'],
) {
  include apache

  ::apache::mod { 'negotiation': }
  # Template uses no variables
  $parameters = {
    'language_priority'       => $language_priority,
    'force_language_priority' => $force_language_priority,
  }

  file { 'negotiation.conf':
    ensure  => file,
    mode    => $apache::file_mode,
    path    => "${apache::mod_dir}/negotiation.conf",
    content => epp('apache/mod/negotiation.conf.epp', $parameters),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}