aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/database/tasks/main.yml
blob: 7191675119b76c5c45117e972e7845bfb46d475d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- include_vars: "{{ ansible_os_family }}.yml"

- name: copy data.sh
  template: src=data.j2 dest=/opt/data.sh mode=777
  tags:
    - mysql_user

- include: mysql.yml
  when: haproxy_hosts is not defined

- include: mariadb.yml
  when: haproxy_hosts is defined