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
This commit is contained in:
Emilien Macchi 2014-04-13 18:12:13 +02:00
parent 5a85cce3ec
commit d9e93ff615

View File

@ -17,8 +17,8 @@ class horizon::params {
$root_url = '/dashboard'
$apache_user = 'apache'
$apache_group = 'apache'
$wsgi_user = 'dashboard'
$wsgi_group = 'dashboard'
$wsgi_user = 'apache'
$wsgi_group = 'apache'
}
'Debian': {
$http_service = 'apache2'