first commit

This commit is contained in:
Emilien Mantel
2015-07-12 10:42:46 +02:00
parent b64b61f415
commit 4955653d48
13 changed files with 315 additions and 0 deletions

21
tasks/secure.yml Normal file
View File

@@ -0,0 +1,21 @@
---
- name: MYSQL_USER | Update mysql root password for all root accounts
mysql_user: name=root host={{ item }} password={{ mysql_root_password }}
with_items:
- "{{ ansible_hostname }}"
- 127.0.0.1
- ::1
- localhost
- name: MYSQL_USER | Remove all anonymous users
mysql_user: name='' host={{ item }} state=absent
with_items:
- "{{ ansible_hostname }}"
- 127.0.0.1
- ::1
- localhost
- name: MYSQL_DB | Remove the test database
mysql_db: name=test state=absent