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
139 lines
4.3 KiB
YAML
139 lines
4.3 KiB
YAML
---
|
|
# Copyright 2014, 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 apache nogroup group
|
|
group:
|
|
name: "nogroup"
|
|
system: "yes"
|
|
|
|
- name: Create apache nogroup user
|
|
user:
|
|
name: "nogroup"
|
|
group: "nogroup"
|
|
system: "yes"
|
|
shell: "/bin/false"
|
|
|
|
- name: Ensure apache log folder exists
|
|
file:
|
|
dest: "{{ keystone_apache_default_log_folder }}"
|
|
state: directory
|
|
owner: "{{ keystone_apache_default_log_owner }}"
|
|
group: "{{ keystone_apache_default_log_grp }}"
|
|
|
|
## Workaround for https://github.com/ansible/ansible-modules-core/issues/5328
|
|
## TODO: Replace using apache2_module when fixed in Ansible release
|
|
## NOTE(cloudnull):
|
|
## Module enable/disable process is only functional on Debian based systems.
|
|
- name: Enable/disable apache2 modules
|
|
command: "{{ (item.state == 'present') | ternary('a2enmod','a2dismod') }} {{ item.name }}"
|
|
register: _apache2_module
|
|
changed_when:
|
|
- _apache2_module.stdout.find('{{ item.name }} already') == -1
|
|
- _apache2_module.stderr.find('{{ item.name }} does not exist') == -1
|
|
failed_when: false
|
|
with_items:
|
|
- name: "ssl"
|
|
state: "{{ (keystone_ssl | bool) | ternary('present', 'absent') }}"
|
|
- name: "shib2"
|
|
state: "{{ ( keystone_sp != {} ) | ternary('present', 'absent') }}"
|
|
- name: "proxy_http"
|
|
state: "{{ (keystone_mod_wsgi_enabled | bool) | ternary('absent', 'present') }}"
|
|
when:
|
|
- ansible_pkg_mgr == 'apt'
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
## NOTE(andymccr):
|
|
## We need to enable a module for httpd on RedHat/CentOS using LoadModule inside conf files
|
|
- name: Enable/disable proxy_uwsgi_module
|
|
lineinfile:
|
|
dest: '/etc/httpd/conf.modules.d/00-proxy.conf'
|
|
line: 'LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so'
|
|
state: "{{ (keystone_mod_wsgi_enabled | bool) | ternary('absent', 'present') }}"
|
|
when:
|
|
- ansible_pkg_mgr == 'yum'
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Drop apache2 config files
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "root"
|
|
group: "root"
|
|
with_items: "{{ keystone_apache_configs }}"
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Disable default apache site
|
|
file:
|
|
path: "{{ item }}"
|
|
state: "absent"
|
|
with_items: "{{ keystone_apache_default_sites }}"
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Enabled keystone vhost
|
|
file:
|
|
src: "{{ keystone_apache_site_available }}"
|
|
dest: "{{ keystone_apache_site_enabled }}"
|
|
state: "link"
|
|
when:
|
|
- keystone_apache_site_available is defined
|
|
- keystone_apache_site_enabled is defined
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Ensure Apache ServerName
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_conf }}"
|
|
line: "ServerName {{ ansible_hostname }}"
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Ensure Apache ServerTokens
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_security_conf }}"
|
|
regexp: '^ServerTokens'
|
|
line: "ServerTokens {{ keystone_apache_servertokens }}"
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Ensure Apache ServerSignature
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_security_conf }}"
|
|
regexp: '^ServerSignature'
|
|
line: "ServerSignature {{ keystone_apache_serversignature }}"
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|
|
|
|
- name: Remove Listen from Apache config
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_conf }}"
|
|
regexp: '^(Listen.*)'
|
|
backrefs: yes
|
|
line: '#\1'
|
|
notify:
|
|
- Restart web server on first node
|
|
- Restart web server on other nodes
|