openstack-ansible-os_gnocchi/tasks/gnocchi_post_install.yml
Jesse Pretorius aa7ee9c6e2 Update paste, policy and rootwrap configurations 2016-09-08
Change-Id: I342947faee2bb3160d54ee4eecfb9da4ddd203eb
2016-09-09 12:47:02 +01:00

53 lines
1.7 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: Drop Gnocchi Config(s)
config_template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: "{{ gnocchi_system_user_name }}"
group: "{{ gnocchi_system_group_name }}"
mode: "0644"
config_overrides: "{{ item.config_overrides }}"
config_type: "{{ item.config_type }}"
with_items:
- src: "api-paste.ini.j2"
dest: "/etc/gnocchi/api-paste.ini"
config_overrides: "{{ gnocchi_api_paste_ini_overrides }}"
config_type: "ini"
- src: "gnocchi.conf.j2"
dest: "/etc/gnocchi/gnocchi.conf"
config_overrides: "{{ gnocchi_conf_overrides }}"
config_type: "ini"
- src: "policy.json.j2"
dest: "/etc/gnocchi/policy.json"
config_overrides: "{{ gnocchi_policy_overrides }}"
config_type: "json"
notify:
- Restart Apache
- Restart Gnocchi API services
- Restart Gnocchi extra services
- name: Drop Gnocchi WSGI Configs
template:
src: gnocchi-wsgi.py.j2
dest: /var/www/cgi-bin/gnocchi/gnocchi-api
owner: "{{ gnocchi_system_user_name }}"
group: "{{ gnocchi_system_group_name }}"
mode: "0755"
when: gnocchi_use_mod_wsgi | bool
notify:
- Restart Apache