mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-16 01:30:25 +00:00
9 lines
191 B
Text
9 lines
191 B
Text
{% set pkg = salt['grains.filter_by']({
|
|
'Debian': {'name': 'python-mysqldb'},
|
|
'RedHat': {'name': 'MySQL-python'},
|
|
}) %}
|
|
|
|
mysqldb-python:
|
|
pkg:
|
|
- installed
|
|
- name: {{ pkg.name }}
|