puppet-openstack-integration/manifests/apache.pp
Takashi Kajinami 8f624221ea 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
2023-08-07 16:58:14 +09:00

10 lines
201 B
Puppet

class openstack_integration::apache {
include openstack_integration::params
include openstack_integration::config
class { 'apache':
default_mods => false,
default_vhost => false,
}
}