
This change removes the use of 'ignore_errors: true' because it causes deployers to see red output and a stacktrace, which traditionally means something is broken, even when the failure is known to have a fall back option or be intentional. This conversion will provide a generally cleaner interface. It should be noted that the 'failed' filter will still function normally. Tasks with the 'failed_when: false' option will still be marked as 'failed' in any registered variable. This change simply makes the output look cleaner. Change-Id: I5ceece61312e2bf39d7489261bca247f353d6d74 Closes-Bug: #1633438 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
134 lines
3.7 KiB
YAML
134 lines
3.7 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: Drop apache2 config files
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "root"
|
|
group: "root"
|
|
with_items: "{{ keystone_apache_configs }}"
|
|
notify:
|
|
- Restart service
|
|
|
|
- name: Disable default apache site
|
|
file:
|
|
path: "{{ item }}"
|
|
state: "absent"
|
|
with_items: "{{ keystone_apache_default_sites }}"
|
|
notify:
|
|
- Restart service
|
|
|
|
- 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 service
|
|
|
|
- name: Ensure Apache ServerName
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_conf }}"
|
|
line: "ServerName {{ ansible_hostname }}"
|
|
notify:
|
|
- Restart service
|
|
|
|
- name: Ensure Apache ServerTokens
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_security_conf }}"
|
|
regexp: '^ServerTokens'
|
|
line: "ServerTokens {{ keystone_apache_servertokens }}"
|
|
notify:
|
|
- Restart service
|
|
|
|
- name: Ensure Apache ServerSignature
|
|
lineinfile:
|
|
dest: "{{ keystone_apache_security_conf }}"
|
|
regexp: '^ServerSignature'
|
|
line: "ServerSignature {{ keystone_apache_serversignature }}"
|
|
notify:
|
|
- Restart service
|
|
|
|
## NOTE(cloudnull):
|
|
## Module enable/disable process is only functional on Debian based systems.
|
|
- name: Enable/disable mod_ssl for apache2
|
|
apache2_module:
|
|
name: ssl
|
|
state: "{{ (keystone_ssl | bool) | ternary('present', 'absent') }}"
|
|
when:
|
|
- ansible_pkg_mgr == 'apt'
|
|
notify:
|
|
- Restart service
|
|
|
|
## NOTE(cloudnull):
|
|
## Module enable/disable process is only functional on Debian based systems.
|
|
- name: Enable/disable mod_shib2 for apache2
|
|
apache2_module:
|
|
name: shib2
|
|
state: "{{ ( keystone_sp != {} ) | ternary('present', 'absent') }}"
|
|
failed_when: false
|
|
when:
|
|
- ansible_pkg_mgr == 'apt'
|
|
notify:
|
|
- Restart service
|
|
|
|
## NOTE(cloudnull):
|
|
## Module enable/disable process is only functional on Debian based systems.
|
|
- name: Enable/disable proxy_http
|
|
apache2_module:
|
|
name: proxy_http
|
|
state: "{{ (keystone_mod_wsgi_enabled | bool) | ternary('absent', 'present') }}"
|
|
when:
|
|
- ansible_pkg_mgr == 'apt'
|
|
notify:
|
|
- Restart service
|
|
|
|
## 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 service
|
|
|
|
## NOTE(mgariepy):
|
|
## We need to enable httpd on CentOS if not it won't start when the container is restarted.
|
|
- name: Load service
|
|
service:
|
|
name: "{{ keystone_system_service_name }}"
|
|
enabled: "yes"
|
|
notify:
|
|
- Restart service
|