Allow logserver to run on CI server (part 2)
Remove double-check for Httpd_mod. This is to finalize change I69e7f9c54d06d7f98b50fdc7d5a67dd10e3e0050 Depends-On: I2b453b6f15d80bba9b1c29bc0d35651cfae05427 Change-Id: Ibc8268e8247e1f0b34a096023437680e60379e91
This commit is contained in:
@@ -35,19 +35,19 @@ class openstackci::logserver (
|
||||
include ::httpd
|
||||
include ::httpd::mod::wsgi
|
||||
|
||||
if ! defined(Httpd_mod['rewrite']) and ! defined(Httpd::Mod['rewrite']) {
|
||||
if ! defined(Httpd::Mod['rewrite']) {
|
||||
httpd::mod { 'rewrite':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
if ! defined(Httpd_mod['proxy']) and ! defined(Httpd::Mod['proxy']) {
|
||||
if ! defined(Httpd::Mod['proxy']) {
|
||||
httpd::mod { 'proxy':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
if ! defined(Httpd_mod['proxy_http']) and ! defined(Httpd::Mod['proxy_http']) {
|
||||
if ! defined(Httpd::Mod['proxy_http']) {
|
||||
httpd::mod { 'proxy_http':
|
||||
ensure => present,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user