1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-29 23:49:09 +00:00

Merge pull request #13191 from Jmainguy/mysql

Add shared connection code for mysql modules
This commit is contained in:
Toshio Kuratomi 2015-12-16 10:47:49 -08:00
commit 1116bc6ca6
4 changed files with 150 additions and 3 deletions

View file

@ -63,7 +63,6 @@
assert:
that:
- "result.failed == true"
- "'check login credentials (login_user, and login_password' in result.msg"
- name: create database using user2 and new password
mysql_db: name={{ db_name }} state=present login_user={{ user_name_2 }} login_password={{ user_password_1 }}

View file

@ -23,5 +23,3 @@
assert:
that:
- "output.failed == true"
- "'{{msg}}' in output.msg"