Files
openstack-ansible/playbooks/roles/os_ceilometer/tasks/ceilometer_upstart_common_init.yml
Kevin Carter 67a31d7385 Implement ceilometer venv support
This commit conditionally allows the os_ceilometer role to
install build and deploy within a venv. This is the new
default behavior of the role however the functionality
can be disabled.

Change-Id: Ic12d0cb2151124fc5150170205d5d226dab53e5b
Implements: blueprint enable-venv-support-within-the-roles
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2015-10-15 10:41:00 +00:00

47 lines
1.2 KiB
YAML

---
# Copyright 2015, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Place the init script
template:
src: "ceilometer-upstart-init.j2"
dest: "/etc/init/{{ program_name }}.conf"
mode: "0644"
owner: "root"
group: "root"
notify:
- Restart ceilometer services
tags:
- upstart-init
- ceilometer-init
- name: Reload init scripts
shell: |
initctl reload-configuration
notify:
- Restart ceilometer services
tags:
- upstart-init
- ceilometer-init
- name: Load service
service:
name: "{{ program_name }}"
enabled: "yes"
notify:
- Restart ceilometer services
tags:
- upstart-init
- ceilometer-init