
This commit should allow to deploy app-catalog with glare support introduced by Ib5c6920c90f566d73a5f9e8ed545f0e082a0b20e Change-Id: I9fbe756cfcc2456587c0395e88f14681a1e43ee4
16 lines
408 B
Puppet
16 lines
408 B
Puppet
class apps_site::params {
|
|
$wsgi_processes = 2
|
|
$wsgi_threads = 4
|
|
|
|
case $::osfamily {
|
|
'Debian': {
|
|
$wsgi_user = 'www-data'
|
|
$wsgi_group = 'www-data'
|
|
$app_catalog_dir = '/usr/local/lib/python2.7/dist-packages/openstack_catalog'
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily: ${::osfamily} operatingsystem: ${::operatingsystem} module: ${module_name}")
|
|
}
|
|
}
|
|
}
|