
Ansible 2.1.1 introduces a regression in the way conditional includes are handled which results in every task in the included file being evaluated even if the condition for the include is not met. This extends the run time significantly for a deployment. This patch forces all conditional includes to be dynamic. Change-Id: I18d8c2119e00aeec3c53cb7e39c8cf09cf5135f8 Related-Bug: https://github.com/ansible/ansible/issues/17687
133 lines
3.6 KiB
YAML
133 lines
3.6 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 the local directories
|
|
file:
|
|
path: "{{ item.path }}"
|
|
state: "directory"
|
|
owner: "{{ item.owner|default('root') }}"
|
|
group: "{{ item.group|default('root') }}"
|
|
mode: "{{ item.mode|default('0755') }}"
|
|
recurse: "{{ item.recurse|default('false') }}"
|
|
with_items:
|
|
- { path: "/var/lib/mysql", owner: "mysql", mode: "2755" }
|
|
- { path: "/var/log/mysql", owner: "mysql", mode: "2755" }
|
|
- { path: "/var/log/mysql_logs", owner: "mysql", mode: "2755" }
|
|
- { path: "/etc/mysql/conf.d" }
|
|
tags:
|
|
- galera-config
|
|
|
|
- name: Drop mariadb config(s)
|
|
config_template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0644"
|
|
config_overrides: "{{ item.config_overrides }}"
|
|
config_type: "{{ item.config_type }}"
|
|
with_items:
|
|
- src: my.cnf.j2
|
|
dest: /etc/mysql/my.cnf
|
|
config_overrides: "{{ galera_my_cnf_overrides }}"
|
|
config_type: "ini"
|
|
- src: cluster.cnf.j2
|
|
dest: /etc/mysql/conf.d/cluster.cnf
|
|
config_overrides: "{{ galera_cluster_cnf_overrides }}"
|
|
config_type: "ini"
|
|
- src: debian.cnf.j2
|
|
dest: /etc/mysql/debian.cnf
|
|
config_overrides: "{{ galera_debian_cnf_overrides }}"
|
|
config_type: "ini"
|
|
notify: Restart mysql
|
|
tags:
|
|
- galera-config
|
|
- galera-client-user-config
|
|
|
|
# NOTE: (mancdaz) this should not be needed with mariadb-10.1 since its
|
|
# initscript sources /etc/default/mariadb
|
|
- name: fix mysql startup timeout
|
|
lineinfile:
|
|
dest: /etc/init.d/mysql
|
|
state: present
|
|
insertafter: '^export HOME=/etc/mysql/'
|
|
line: '[ -r /etc/default/mysql ] && . /etc/default/mysql'
|
|
backup: yes
|
|
tags:
|
|
- galera-config
|
|
|
|
- name: Drop limits config (upstart)
|
|
template:
|
|
src: "upstart.limits.conf.j2"
|
|
dest: "/etc/security/limits.conf"
|
|
when:
|
|
- pid1_name != "systemd"
|
|
notify:
|
|
- Restart mysql
|
|
tags:
|
|
- galera-config
|
|
|
|
# NOTE: (mancdaz) REMOVE "/etc/default/mysql" when running MariaDB 10.1
|
|
- name: Apply resource limits (upstart)
|
|
template:
|
|
src: "mysql_defaults.j2"
|
|
dest: "{{ item }}"
|
|
mode: "0644"
|
|
with_items:
|
|
- /etc/default/mysql
|
|
- /etc/default/mariadb
|
|
when:
|
|
- ansible_pkg_mgr == 'apt'
|
|
- pid1_name != "systemd"
|
|
notify:
|
|
- Restart mysql
|
|
tags:
|
|
- galera-config
|
|
|
|
- name: Create mariadb systemd service config dir
|
|
file:
|
|
path: "/etc/systemd/system/mariadb.service.d"
|
|
state: "directory"
|
|
group: "root"
|
|
owner: "root"
|
|
mode: "0755"
|
|
when:
|
|
- pid1_name == "systemd"
|
|
|
|
- name: Apply resource limits (systemd)
|
|
template:
|
|
src: "systemd.limits.conf.j2"
|
|
dest: "/etc/systemd/system/mariadb.service.d/limits.conf"
|
|
mode: "0644"
|
|
when:
|
|
- pid1_name == "systemd"
|
|
notify:
|
|
- Reload the systemd daemon
|
|
- Restart mysql
|
|
tags:
|
|
- galera-config
|
|
|
|
- name: remove default mysql_safe_syslog
|
|
file:
|
|
path: "/etc/mysql/conf.d/mysqld_safe_syslog.cnf"
|
|
state: absent
|
|
tags:
|
|
- galera-config
|
|
|
|
- include: galera_upgrade_post.yml
|
|
static: no
|
|
when:
|
|
- galera_upgrade | bool
|