mysql/database: Added tag mysql_database to all tasks

master
Felix Stupp 4 years ago
parent 9fd183bbac
commit fe34e6111e
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -1,6 +1,8 @@
---
- meta: flush_handlers
tags:
- mysql_database
- name: Create SQL user {{ database_user }}
mysql_user:
@ -13,6 +15,8 @@
login_unix_socket: "{{ global_mysql_socket_path }}"
login_user: root
login_password: "{{ mysql_root_password }}"
tags:
- mysql_database
- name: Create SQL database {{ database_name }}
mysql_db:
@ -21,6 +25,8 @@
login_user: root
login_password: "{{ mysql_root_password }}"
register: create_database
tags:
- mysql_database
- name: Import SQL database template on creation
include_tasks:

Loading…
Cancel
Save