mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-16 01:30:25 +00:00
23 lines
525 B
Text
23 lines
525 B
Text
{% from "mysql/package-map.jinja" import pkgs, services, configs with context %}
|
|
|
|
mysqld:
|
|
pkg:
|
|
- installed
|
|
- name: {{ pkgs['mysql-server'] }}
|
|
service:
|
|
- running
|
|
- name: {{ services['mysql'] }}
|
|
- 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 %}
|