view modules/apache/manifests/mod/lbmethod_bybusyness.pp @ 482:d83de9b3a62b default tip

Update hiera.yaml within Puppet config Forgot that we manage it from here. Now has content to match new packages
author IBBoard <dev@ibboard.co.uk>
date Fri, 30 Aug 2024 16:10:36 +0100
parents adf6fe9bbc17
children
line wrap: on
line source

# @summary
#   Installs `lbmethod_bybusyness`.
# 
# @param apache_version
#   Version of Apache to install module on.
# 
# @see https://httpd.apache.org/docs/2.4/mod/mod_lbmethod_bybusyness.html for additional documentation.
#
class apache::mod::lbmethod_bybusyness (
  Optional[String] $apache_version   = $apache::apache_version,
) {
  require apache::mod::proxy_balancer

  if versioncmp($apache_version, '2.3') >= 0 {
    apache::mod { 'lbmethod_bybusyness': }
  } else {
    fail('Unsuported version for mod lbmethod_bybusyness')
  }
}