Update mysql setup to handle installing mysql with dnf too.

pull/13663/head
Toshio Kuratomi 9 years ago committed by James Cammarata
parent 1cde02058f
commit 1d1a04008e

@ -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

Loading…
Cancel
Save