Kris Lamoureux
7f91b24adb
- Default docker_official toggle to false (for now) - Preempt MariaDB restart before container restarts - Start containers in a handler
13 lines
276 B
YAML
13 lines
276 B
YAML
- name: Restart MariaDB
|
|
ansible.builtin.service:
|
|
name: mariadb
|
|
state: restarted
|
|
when: not mariadb_restarted
|
|
listen: restart_mariadb
|
|
|
|
- name: Set MariaDB as restarted
|
|
set_fact:
|
|
mariadb_restarted: true
|
|
when: not mariadb_restarted
|
|
listen: restart_mariadb
|