Drop MySQL, Percona Server and Jessie support

This commit is contained in:
Emilien Mantel
2018-03-17 17:05:45 +01:00
parent 589754e618
commit 859bafdb50
13 changed files with 22 additions and 135 deletions

View File

@@ -1,16 +0,0 @@
---
- name: INCLUDE | Add percona APT repository
include: apt.yml
- name: DEBCONF | Prepare MySQL silent installation (root password)
debconf: name='percona-server-server-{{ mysql_percona_version }}' question='percona-server-server/root_password' vtype='password' value='{{ mysql_root_password }}'
when: not mysql_exists.stat.exists
- name: DEBCONF | Prepare MySQL silent installation (root password)
debconf: name='percona-server-server-{{ mysql_percona_version }}' question='percona-server-server/root_password_again' vtype='password' value='{{ mysql_root_password }}'
when: not mysql_exists.stat.exists
- name: APT | Install Percona
apt: update_cache=yes cache_valid_time=3600 pkg='percona-server-server-{{ mysql_percona_version }}' state=present