Skip to content

Commit

Permalink
Merge "Fix user/group for debian operating system" into stable/havana
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Jan 7, 2014
2 parents ad9117d + 934a987 commit 6f5f602
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@
$httpd_config_file = '/etc/apache2/conf.d/openstack-dashboard.conf'
$httpd_listen_config_file = '/etc/apache2/ports.conf'
$root_url = '/horizon'
$apache_user = 'horizon'
$apache_group = 'horizon'
case $::operatingsystem {
'Debian': {
$package_name = 'openstack-dashboard-apache'
$apache_user = 'www-data'
$apache_group = 'www-data'
}
default: {
$package_name = 'openstack-dashboard'
$apache_user = 'horizon'
$apache_group = 'horizon'
}
}
}
Expand Down

0 comments on commit 6f5f602

Please sign in to comment.