mysql-formula/mysql/server.sls

24 lines
525 B
Text
Raw Normal View History

{% from "mysql/package-map.jinja" import pkgs, services, configs with context %}
2013-06-13 16:30:25 -06:00
mysqld:
pkg:
- installed
- name: {{ pkgs['mysql-server'] }}
2013-06-13 16:30:25 -06:00
service:
- running
- name: {{ services['mysql'] }}
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: {{ configs['mysql'] }}
- source: salt://mysql/files/{{ grains['os'] }}-my.cnf
- user: root
- group: root
- mode: 644
- template: jinja
{% endif %}