We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2632e3b commit 5bc7879Copy full SHA for 5bc7879
manifests/mod/version.pp
@@ -0,0 +1,12 @@
1
+# @summary
2
+# Installs `mod_version`.
3
+#
4
+# @see https://httpd.apache.org/docs/current/mod/mod_version.html for additional documentation.
5
6
+class apache::mod::version {
7
+ if $facts['os']['family'] == 'debian' {
8
+ warning("${module_name}: module version_module is built-in and can't be loaded")
9
+ } else {
10
+ ::apache::mod { 'version': }
11
+ }
12
+}
0 commit comments