Mercurial > repos > other > Puppet
view modules/apache/manifests/mod/version.pp @ 478:adf6fe9bbc17
Update Puppet modules to latest versions
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Thu, 29 Aug 2024 18:47:29 +0100 |
parents | b8d6ada284dd |
children |
line wrap: on
line source
# @summary # Installs `mod_version`. # # @see https://httpd.apache.org/docs/current/mod/mod_version.html for additional documentation. # class apache::mod::version { if $facts['os']['family'] == 'Debian' { warning("${module_name}: module version_module is built-in and can't be loaded") } else { ::apache::mod { 'version': } } }