Merge "Use httpd::mod instead of httpd_mod"
This commit is contained in:
commit
c71d6b4496
@ -14,9 +14,11 @@ class openstack_project::cacti (
|
||||
|
||||
include ::httpd
|
||||
|
||||
httpd_mod { 'rewrite':
|
||||
if ! defined(Httpd::Mod['rewrite']) {
|
||||
httpd::mod { 'rewrite':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
package { 'cacti':
|
||||
ensure => present,
|
||||
|
@ -144,9 +144,11 @@ class openstack_project::eavesdrop (
|
||||
require => Class['statusbot'],
|
||||
}
|
||||
|
||||
httpd_mod { 'headers':
|
||||
if ! defined(Httpd::Mod['headers']) {
|
||||
httpd::mod { 'headers':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
class { 'project_config':
|
||||
url => $project_config_repo,
|
||||
|
@ -70,15 +70,23 @@ class openstack_project::grafana (
|
||||
template => 'openstack_project/grafana.vhost.erb',
|
||||
}
|
||||
|
||||
httpd_mod { 'rewrite':
|
||||
if ! defined(Httpd::Mod['rewrite']) {
|
||||
httpd::mod { 'rewrite':
|
||||
ensure => present,
|
||||
}
|
||||
httpd_mod { 'proxy':
|
||||
}
|
||||
|
||||
if ! defined(Httpd::Mod['proxy']) {
|
||||
httpd::mod { 'proxy':
|
||||
ensure => present,
|
||||
}
|
||||
httpd_mod { 'proxy_http':
|
||||
}
|
||||
|
||||
if ! defined(Httpd::Mod['proxy_http']) {
|
||||
httpd::mod { 'proxy_http':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
class { '::project_config':
|
||||
url => $project_config_repo,
|
||||
|
@ -31,15 +31,23 @@ class openstack_project::static (
|
||||
include ::httpd
|
||||
include ::httpd::mod::wsgi
|
||||
|
||||
httpd_mod { 'rewrite':
|
||||
if ! defined(Httpd::Mod['rewrite']) {
|
||||
httpd::mod { 'rewrite':
|
||||
ensure => present,
|
||||
}
|
||||
httpd_mod { 'proxy':
|
||||
}
|
||||
|
||||
if ! defined(Httpd::Mod['proxy']) {
|
||||
httpd::mod { 'proxy':
|
||||
ensure => present,
|
||||
}
|
||||
httpd_mod { 'proxy_http':
|
||||
}
|
||||
|
||||
if ! defined(Httpd::Mod['proxy_http']) {
|
||||
httpd::mod { 'proxy_http':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
if ! defined(File['/srv/static']) {
|
||||
file { '/srv/static':
|
||||
|
@ -26,15 +26,23 @@ class openstack_project::status (
|
||||
|
||||
include ::httpd
|
||||
|
||||
httpd_mod { 'rewrite':
|
||||
if ! defined(Httpd::Mod['rewrite']) {
|
||||
httpd::mod { 'rewrite':
|
||||
ensure => present,
|
||||
}
|
||||
httpd_mod { 'proxy':
|
||||
}
|
||||
|
||||
if ! defined(Httpd::Mod['proxy']) {
|
||||
httpd::mod { 'proxy':
|
||||
ensure => present,
|
||||
}
|
||||
httpd_mod { 'proxy_http':
|
||||
}
|
||||
|
||||
if ! defined(Httpd::Mod['proxy_http']) {
|
||||
httpd::mod { 'proxy_http':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
file { '/srv/static':
|
||||
ensure => directory,
|
||||
|
Loading…
Reference in New Issue
Block a user