Files
puppet-horizon/manifests/params.pp
Emilien Macchi d9e93ff615 Fix wsgi_user and wsgi_group for RHEL
In RHEL, wsgi_user and wsgi_group should be "apache" and not
"dashboard".

Closes-bug #1224770
Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com>

Change-Id: I253b90a55d33d927e318400a69243925b7245aa4
2014-04-13 18:12:13 +02:00

47 lines
1.9 KiB
Puppet

# these parameters need to be accessed from several locations and
# should be considered to be constant
class horizon::params {
$logdir = '/var/log/horizon'
$django_wsgi = '/usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi'
$manage_py = '/usr/share/openstack-dashboard/manage.py'
case $::osfamily {
'RedHat': {
$http_service = 'httpd'
$http_modwsgi = 'mod_wsgi'
$package_name = 'openstack-dashboard'
$config_file = '/etc/openstack-dashboard/local_settings'
$httpd_config_file = '/etc/httpd/conf.d/openstack-dashboard.conf'
$httpd_listen_config_file = '/etc/httpd/conf/httpd.conf'
$root_url = '/dashboard'
$apache_user = 'apache'
$apache_group = 'apache'
$wsgi_user = 'apache'
$wsgi_group = 'apache'
}
'Debian': {
$http_service = 'apache2'
$config_file = '/etc/openstack-dashboard/local_settings.py'
$httpd_config_file = '/etc/apache2/conf.d/openstack-dashboard.conf'
$httpd_listen_config_file = '/etc/apache2/ports.conf'
$root_url = '/horizon'
$apache_user = 'www-data'
$apache_group = 'www-data'
$wsgi_user = 'horizon'
$wsgi_group = 'horizon'
case $::operatingsystem {
'Debian': {
$package_name = 'openstack-dashboard-apache'
}
default: {
$package_name = 'openstack-dashboard'
}
}
}
default: {
fail("Unsupported osfamily: ${::osfamily} operatingsystem: ${::operatingsystem}, module ${module_name} only support osfamily RedHat and Debian")
}
}
}