Update mysql setup to handle installing mysql with dnf too.

This commit is contained in:
Toshio Kuratomi 2015-12-16 14:06:11 -08:00 committed by James Cammarata
parent 1cde02058f
commit 1d1a04008e

View file

@ -31,6 +31,11 @@
with_items: mysql_packages
when: ansible_pkg_mgr == 'yum'
- name: install mysqldb_test rpm dependencies
dnf: name={{ item }} state=latest
with_items: mysql_packages
when: ansible_pkg_mgr == 'dnf'
- name: install mysqldb_test debian dependencies
apt: name={{ item }} state=latest
with_items: mysql_packages