aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/database/tasks/mysql.yml
blob: 8005292ee35009b8774e585bcdc305c8264ceb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: install mysql client and server packages
  apt: name={{ item }} state=present
  with_items: mysql_packages

- name: create mysql log directy
  file: path=/var/log/mysql state=directory owner=mysql group=mysql mode=0755

- name: update mysql my.cnf
  copy: src=my.cnf
        dest=/etc/mysql/my.cnf
        backup=yes

- name: manually restart mysql server
  shell: service mysql restart

- name: create database/user
  shell: /opt/data.sh
  tags:
    - mysql_user