Files
openstack-ansible-os_panko/tasks/panko_post_install.yml

69 lines
2.1 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: Copy panko config
config_template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: "{{ panko_system_user_name }}"
group: "{{ panko_system_group_name }}"
mode: "0644"
config_overrides: "{{ item.config_overrides }}"
config_type: "{{ item.config_type }}"
with_items:
- src: "panko.conf.j2"
dest: "/etc/panko/panko.conf"
config_overrides: "{{ panko_panko_conf_overrides }}"
config_type: "ini"
- src: "api_paste.ini.j2"
dest: "/etc/panko/api_paste.ini"
config_overrides: "{{ panko_api_paste_ini_overrides }}"
config_type: "ini"
notify:
- Restart panko services
- Restart uwsgi services
- name: Implement policy.yaml if there are overrides configured
config_template:
content: "{{ panko_policy_overrides }}"
dest: "/etc/panko/policy.yaml"
owner: "{{ panko_system_user_name }}"
group: "{{ panko_system_group_name }}"
mode: "0644"
config_type: "yaml"
when:
- panko_policy_overrides | length > 0
tags:
- panko-policy-override
- name: Remove legacy policy.yaml file
file:
path: "/etc/panko/policy.yaml"
state: absent
when:
- panko_policy_overrides | length == 0
tags:
- panko-policy-override
- name: Create cron job for panko event expirer
cron:
name: "Purge old panko events"
user: "{{ panko_system_user_name }}"
special_time: "{{ panko_expirer_job_time }}"
job: "{{ panko_bin }}/panko-expirer"
when:
- _panko_is_first_play_host
- panko_event_time_to_live > 0