Resetup galera
parent
e3e3ae1a05
commit
4a5a3ec75c
|
@ -136,6 +136,6 @@ percona_repository: 'http://repo.percona.com/apt'
|
||||||
|
|
||||||
|
|
||||||
# Galera
|
# Galera
|
||||||
mysql_galera_bootstrap: false
|
mysql_galera_resetup: false
|
||||||
mariadb_galera_members: []
|
mariadb_galera_members: []
|
||||||
mysql_galera_primary_node: 'change_me' # See: https://github.com/ansible/ansible/issues/17453
|
mysql_galera_primary_node: 'change_me' # See: https://github.com/ansible/ansible/issues/17453
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
register: bootstrap_run
|
register: bootstrap_run
|
||||||
when: ansible_service_mgr != 'systemd'
|
when: ansible_service_mgr != 'systemd'
|
||||||
|
|
||||||
when: not s.stat.exists
|
when: not s.stat.exists or mysql_galera_resetup
|
||||||
|
|
||||||
- name: COMMAND | Create Bootstrap mark
|
- name: COMMAND | Create Bootstrap mark
|
||||||
command: "touch {{ booboo }}"
|
command: "touch {{ booboo }}"
|
||||||
|
|
|
@ -19,8 +19,8 @@
|
||||||
- name: SERVICE | Restart now (prevent bugs)
|
- name: SERVICE | Restart now (prevent bugs)
|
||||||
service: name=mysql state=restarted
|
service: name=mysql state=restarted
|
||||||
when: >
|
when: >
|
||||||
config.changed or
|
(config.changed or extraconfig.changed) and
|
||||||
extraconfig.changed
|
not mysql_galera_resetup
|
||||||
|
|
||||||
- name: TEMPLATE Create .my.cnf for root
|
- name: TEMPLATE Create .my.cnf for root
|
||||||
template: src=root/my.cnf dest=/root/.my.cnf owner=root group=root mode=0600 backup=yes
|
template: src=root/my.cnf dest=/root/.my.cnf owner=root group=root mode=0600 backup=yes
|
||||||
|
|
Loading…
Reference in New Issue