summaryrefslogtreecommitdiffstats
path: root/INFO
blob: c2d56aee067d4a11535e0549abe03e0a44c6658a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
##############################################################################
# Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

Project: Apex
Project Creation Date: July 14, 2015
Project Category: Integration & Testing
Lifecycle State: Incubation
Primary Contact: Tim Rozet
Project Lead: Tim Rozet
Jira Project Name: Apex OPNFV Installer
Jira Project Prefix: APEX
Mailing list tag: [Apex]
IRC: Server:freenode.net Channel:#opnfv-apex
Repository: apex

Committers:
Dan Radez (dradez@redhat.com)
Tim Rozet (trozet@redhat.com)
Michael Chapman (michapma@redhat.com)
Feng Pan (fpan@redhat.com)
Ricardo Noriega (rnoriega@redhat.com)

Link to TSC approval of the project: http://ircbot.wl.linuxfoundation.org/meetings/opnfv-meeting/2015/opnfv-meeting.2015-07-14-14.00.html
[1]: - libvirt-bin 1.3.2 or newer will use "libvirtd" naming; - libvirt-bin 1.2.9 ... <1.3.2 will use "libvirt". [1] https://review.openstack.org/#/c/200602/8/deployment/puppet/ openstack/manifests/ceilometer.pp --- deployment/puppet/openstack_tasks/manifests/ceilometer/compute.pp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deployment/puppet/openstack_tasks/manifests/ceilometer/compute.pp b/deployment/puppet/openstack_tasks/manifests/ceilometer/compute.pp index 8311731..1d7af2b 100644 --- a/deployment/puppet/openstack_tasks/manifests/ceilometer/compute.pp +++ b/deployment/puppet/openstack_tasks/manifests/ceilometer/compute.pp @@ -195,7 +195,13 @@ class openstack::ceilometer ( if $::operatingsystem == 'Ubuntu' and $::ceilometer::params::libvirt_group { + # Armband libvirt-bin deb package (1.3.2 version) creates 'libvirtd' group on Ubuntu + if (versioncmp($::libvirt_package_version, '1.3.2') >= 0) { + User<| name == 'ceilometer' |> { + groups => ['nova', 'libvirtd'], + } + } # Our libvirt-bin deb package (1.2.9 version) creates 'libvirt' group on Ubuntu - if (versioncmp($::libvirt_package_version, '1.2.9') >= 0) { + elsif (versioncmp($::libvirt_package_version, '1.2.9') >= 0) { User<| name == 'ceilometer' |> { groups => ['nova', 'libvirt'], }