mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-16 01:30:25 +00:00
12 lines
255 B
Text
12 lines
255 B
Text
{% from "salt/package-map.jinja" import pkgs, services with context %}
|
|
|
|
mysqld:
|
|
pkg:
|
|
- installed
|
|
- name: {{ pkgs['mysql-server'] }}
|
|
service:
|
|
- running
|
|
- name: {{ services['mysql'] }}
|
|
- enable: True
|
|
- watch:
|
|
- pkg: mysqld
|