Skip to content
Snippets Groups Projects
Commit e66f42c2 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#85 Linting

parent 81d99238
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
#!/usr/bin/env python3
import argparse
......
......@@ -45,7 +45,7 @@
- localhost
- 127.0.0.1
- ::1
- {{ inventory_hostname }}
- '{{( inventory_hostname }})'
ignore_errors: yes
- name: Create root .my.cnf file
......
......@@ -8,7 +8,7 @@
host: '{{item}}'
priv: '*.*:REPLICATION SLAVE,REPLICATION CLIENT'
with_items:
- "localhost"
- "127.0.0.1"
- "::1"
- "{{inventory_hostname}}"
- localhost
- 127.0.0.1
- ::1
- '{{inventory_hostname}}'
......@@ -11,7 +11,7 @@
- localhost
- 127.0.0.1
- ::1
- {{ inventory_hostname }}
- '{{( inventory_hostname }})'
notify:
- Restart MySQL
......@@ -24,7 +24,7 @@
- localhost
- 127.0.0.1
- ::1
- {{inventory_hostname}}
- '{{(inventory_hostname}})'
notify:
- Restart MySQL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment