Import tasks/defaults/templates/readme from old repo

This commit is contained in:
Emilien Mantel
2015-07-12 11:50:23 +02:00
parent 4955653d48
commit 4e7528300e
12 changed files with 199 additions and 27 deletions

View File

@@ -0,0 +1,6 @@
# {{ ansible_managed }}
Explanation: Prevent Debian upgrades on percona packages
Package: *
Pin: release o=Percona Development Team
Pin-Priority: 1001

View File

@@ -0,0 +1,17 @@
# -------------------------------------------
# {{ ansible_managed }}
# -------------------------------------------
{% for i in mysql_cnf %}
[{{ i.group_name }}]
{% for c in i.conf %}
{% if c.value is defined %}
{{ c.key }} = {{ c.value }}
{% else %}
{{ c.key }}
{% endif %}
{% endfor %}
{% endfor %}
; vim: set ft=ini :

View File

@@ -0,0 +1,8 @@
# ------------------------------------------
# {{ ansible_managed }}
# ------------------------------------------
[client]
user=root
pass={{ mysql_root_password }}