mysql-formula/mysql/server.sls

26 lines
523 B
Text
Raw Normal View History

{% from "mysql/map.jinja" import mysql with context %}
2013-06-13 16:30:25 -06:00
mysqld:
pkg:
- installed
- name: {{ mysql.server }}
2013-06-13 16:30:25 -06:00
service:
- running
- name: {{ mysql.service }}
2013-06-13 16:30:25 -06:00
- enable: True
- watch:
- pkg: mysqld
{% if grains['os'] in ['Ubuntu', 'Debian', 'Gentoo'] %}
my.cnf:
file.managed:
- name: {{ mysql.config }}
- source: salt://mysql/files/{{ grains['os'] }}-my.cnf
- user: root
- group: root
- mode: 644
- template: jinja
2013-08-19 10:15:22 -05:00
- watch_in:
- service: mysqld
{% endif %}