94293c86c2
The policy.json file is currently read continually by the services and is not only read on service start. We therefore cannot template directly to the file read by the service (if the service is already running) because the new policies may not be valid until the service restarts. This is particularly important during a major upgrade. We therefore only put the policy file in place after the service restart. This patch also tidies up the handlers and some of the install tasks to simplify them and reduce the tasks/code a little. Change-Id: Ie913e5eb75f3601107b53bab7bda4a02ab1c1024
56 lines
2.0 KiB
YAML
56 lines
2.0 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: Create Keystone LDAP domains
|
|
keystone:
|
|
command: ensure_domain
|
|
domain_name: "{{ item.key }}"
|
|
login_user: "{{ keystone_admin_user_name }}"
|
|
login_password: "{{ keystone_auth_admin_password }}"
|
|
login_project_name: "{{ keystone_admin_tenant_name }}"
|
|
endpoint: "{{ keystone_service_adminurl }}"
|
|
insecure: "{{ keystone_service_adminuri_insecure }}"
|
|
with_dict: "{{ keystone_ldap }}"
|
|
run_once: true
|
|
|
|
- name: Create Keystone LDAP domain configs
|
|
template:
|
|
src: keystone.domain.conf.j2
|
|
dest: "{{ keystone_ldap_domain_config_dir }}/keystone.{{ item.key }}.conf"
|
|
owner: "root"
|
|
group: "{{ keystone_system_group_name }}"
|
|
mode: "0640"
|
|
with_dict: "{{ keystone_ldap }}"
|
|
notify:
|
|
- Restart uWSGI on first node
|
|
- Restart uWSGI on other nodes
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
# Bug 1547542 - Older versions of the keystone role would deploy a blank
|
|
# keystone.Default.conf and this will cause errors when adding LDAP-backed
|
|
# domains.
|
|
- name: Remove Keystone Default domain configuration file if not needed
|
|
file:
|
|
path: "{{ keystone_ldap_domain_config_dir }}/keystone.Default.conf"
|
|
state: absent
|
|
when: keystone_ldap.Default is not defined
|
|
notify:
|
|
- Restart uWSGI on first node
|
|
- Restart uWSGI on other nodes
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|