From 8f624221ea56d8232ac47ebde0bfc8ad82e38cde Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 7 Aug 2023 12:39:26 +0900 Subject: [PATCH] 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 --- hiera/common.yaml | 1 - manifests/apache.pp | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hiera/common.yaml b/hiera/common.yaml index f9a03b76a..ed97d539c 100644 --- a/hiera/common.yaml +++ b/hiera/common.yaml @@ -1,2 +1 @@ --- -apache::default_vhost: false diff --git a/manifests/apache.pp b/manifests/apache.pp index 842a8bb09..be7a86130 100644 --- a/manifests/apache.pp +++ b/manifests/apache.pp @@ -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, + } }