Apache: Disable default mods

We should load the required mods automatically instead of relying on
the list of modules loaded by puppetlabs-apache by default.

Change-Id: I8f60238ddb82c188dc2042ab38fedb3b0edbaef3
This commit is contained in:
Takashi Kajinami 2023-08-07 12:39:26 +09:00
parent 8d2f39a7b2
commit 8f624221ea
2 changed files with 4 additions and 2 deletions

View File

@ -1,2 +1 @@
---
apache::default_vhost: false

View File

@ -2,5 +2,8 @@ class openstack_integration::apache {
include openstack_integration::params
include openstack_integration::config
include apache
class { 'apache':
default_mods => false,
default_vhost => false,
}
}