Merge "Sync httpd vhost settings in between pcmk and non-pcmk scenarios"

This commit is contained in:
Jenkins
2015-10-21 13:42:29 +00:00
committed by Gerrit Code Review
3 changed files with 3 additions and 8 deletions

View File

@@ -92,6 +92,9 @@ pacemaker::resource_defaults::defaults:
# horizon
horizon::cache_backend: django.core.cache.backends.memcached.MemcachedCache
horizon::django_session_engine: 'django.contrib.sessions.backends.cache'
horizon::vhost_extra_params:
add_listen: false
priority: 10
# mysql
mysql::server::manage_config_file: true

View File

@@ -461,10 +461,8 @@ if hiera('step') >= 3 {
$_profile_support = 'None'
}
$neutron_options = {'profile_support' => $_profile_support }
$vhost_params = { add_listen => false }
class { 'horizon':
cache_server_ip => hiera('memcache_node_ips', '127.0.0.1'),
vhost_extra_params => $vhost_params,
neutron_options => $neutron_options,
}

View File

@@ -883,14 +883,8 @@ if hiera('step') >= 3 {
$_profile_support = 'None'
}
$neutron_options = {'profile_support' => $_profile_support }
$vhost_params = {
add_listen => false,
priority => 10,
}
class { 'horizon':
cache_server_ip => hiera('memcache_node_ips', '127.0.0.1'),
vhost_extra_params => $vhost_params,
server_aliases => $::hostname,
neutron_options => $neutron_options,
}