mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
c7062e1b38
- bumped up ansible from 2.3.1 to 2.4.1 - renamed include to include_tasks since it has been deprecated in ansible 2.4
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
---
|
|
- include_tasks: centos.yml
|
|
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version|int >= 6
|
|
|
|
- include_tasks: ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- name: Add configuration
|
|
template: src={{ mysql_conf_tpl }} dest={{ mysql_conf_dir[ansible_distribution] }}/{{ mysql_conf_file }} owner=root group=root mode=0644
|
|
when: mysql_conf_tpl != 'change_me' and ansible_distribution != 'Debian'
|
|
notify: restart mysql
|
|
|
|
- include_tasks: debian.yml
|
|
when: ansible_distribution == 'Debian'
|
|
|
|
- name: Add configuration
|
|
template: src=files/debian_mariadb_config.cnf dest={{ mysql_conf_dir[ansible_distribution] }}/{{ mysql_conf_file }} owner=root group=root mode=0644
|
|
when: mysql_conf_tpl != 'change_me' and ansible_distribution == 'Debian'
|
|
notify: restart mysql
|
|
|
|
- name: Start and enable service
|
|
service: name=mysql state=started enabled=yes
|
|
|
|
- debug:
|
|
msg: "{{ mysql_root_password }}"
|
|
|
|
- include_tasks: mysql_secure_installation.yml
|
|
when: mysql_root_password is defined
|
|
|
|
- debug: var=mysql_secure_installation
|
|
when: mysql_secure_installation and mysql_root_password is defined
|