Skip to content
Snippets Groups Projects
Commit 8b975818 authored by Lars Beckers's avatar Lars Beckers
Browse files

Merge branch 'mysql-no-root-pw' into 'master'

Don't use root passwort to create mysql db and user

See merge request !26
parents 53f0fb50 f254b2a1
No related branches found
No related tags found
1 merge request!26Don't use root passwort to create mysql db and user
Pipeline #3429 passed
......@@ -16,8 +16,6 @@
mysql_db:
name: "{{ app_db_name }}"
state: present
login_user: root
login_password: "{{ app_db_root_password }}"
no_log: true
tags:
- uwsgi-python
......@@ -28,8 +26,6 @@
name: "{{ app_user }}"
password: "{{ app_db_password }}"
state: present
login_user: root
login_password: "{{ app_db_root_password }}"
priv: "{{ app_db_name }}.*:ALL"
no_log: true
tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment