Merge "Use httpd::mod instead of httpd_mod"

This commit is contained in:
Jenkins 2015-12-21 18:18:57 +00:00 committed by Gerrit Code Review
commit c71d6b4496
5 changed files with 50 additions and 22 deletions

View File

@ -14,8 +14,10 @@ class openstack_project::cacti (
include ::httpd
httpd_mod { 'rewrite':
ensure => present,
if ! defined(Httpd::Mod['rewrite']) {
httpd::mod { 'rewrite':
ensure => present,
}
}
package { 'cacti':

View File

@ -144,8 +144,10 @@ class openstack_project::eavesdrop (
require => Class['statusbot'],
}
httpd_mod { 'headers':
ensure => present,
if ! defined(Httpd::Mod['headers']) {
httpd::mod { 'headers':
ensure => present,
}
}
class { 'project_config':

View File

@ -70,14 +70,22 @@ class openstack_project::grafana (
template => 'openstack_project/grafana.vhost.erb',
}
httpd_mod { 'rewrite':
ensure => present,
if ! defined(Httpd::Mod['rewrite']) {
httpd::mod { 'rewrite':
ensure => present,
}
}
httpd_mod { 'proxy':
ensure => present,
if ! defined(Httpd::Mod['proxy']) {
httpd::mod { 'proxy':
ensure => present,
}
}
httpd_mod { 'proxy_http':
ensure => present,
if ! defined(Httpd::Mod['proxy_http']) {
httpd::mod { 'proxy_http':
ensure => present,
}
}
class { '::project_config':

View File

@ -31,14 +31,22 @@ class openstack_project::static (
include ::httpd
include ::httpd::mod::wsgi
httpd_mod { 'rewrite':
ensure => present,
if ! defined(Httpd::Mod['rewrite']) {
httpd::mod { 'rewrite':
ensure => present,
}
}
httpd_mod { 'proxy':
ensure => present,
if ! defined(Httpd::Mod['proxy']) {
httpd::mod { 'proxy':
ensure => present,
}
}
httpd_mod { 'proxy_http':
ensure => present,
if ! defined(Httpd::Mod['proxy_http']) {
httpd::mod { 'proxy_http':
ensure => present,
}
}
if ! defined(File['/srv/static']) {

View File

@ -26,14 +26,22 @@ class openstack_project::status (
include ::httpd
httpd_mod { 'rewrite':
ensure => present,
if ! defined(Httpd::Mod['rewrite']) {
httpd::mod { 'rewrite':
ensure => present,
}
}
httpd_mod { 'proxy':
ensure => present,
if ! defined(Httpd::Mod['proxy']) {
httpd::mod { 'proxy':
ensure => present,
}
}
httpd_mod { 'proxy_http':
ensure => present,
if ! defined(Httpd::Mod['proxy_http']) {
httpd::mod { 'proxy_http':
ensure => present,
}
}
file { '/srv/static':