summaryrefslogtreecommitdiffstats
path: root/tasks/mysql_server.yml
blob: 482245fca530cd5d38a3a022295cfd0fdc1c799a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
#
# Setup mysql server. 
#
- name: install mysql server packages
  yum: name={{ item }} state=present
  with_items:
  - mysql-server
  tags:
  - packages

- name: install our my.cnf
  copy: src="{{ files }}/mysql/my.cnf" dest=/etc/my.cnf owner=root group=root mode=0644

- name: Set mysql-server to run
  service: name=mysqld enabled=yes state=running
  tags:
  - service