mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
* Add changelog fragment * Add check_hostname option * Propagate check_hostname option across the collection * Update documentation fragment * Propagate test to all other plugins * Remove stray line * Give test user privileges to run test operations * Extend integration tests job matrix * Add caution note to documentation fragment. * Update matrix job name * Rearrange job matrix * Fix sanity issues * Fix issue with mysqldb silently failing to update out of range variables * Fix variable overwrite * Ignore `check_hostname` when using MySQLdb * Update plugins/doc_fragments/mysql.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/doc_fragments/mysql.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update changelogs/fragments/35-disable-hostname-check.yml Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
---
|
|
- name: "{{ role_name }} | install | add apt signing key for percona"
|
|
apt_key:
|
|
keyserver: keyserver.ubuntu.com
|
|
id: 4D1BB29D63D98E422B2113B19334A25F8507EFA5
|
|
state: present
|
|
|
|
- name: "{{ role_name }} | install | add percona repositories"
|
|
apt_repository:
|
|
repo: "{{ item }}"
|
|
state: present
|
|
loop: "{{ percona_mysql_repos }}"
|
|
|
|
- name: "{{ role_name }} | install | install packages required by percona"
|
|
apt:
|
|
name: "{{ percona_mysql_packages }}"
|
|
state: present
|
|
environment:
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|
|
- name: "{{ role_name }} | install | install packages required by mysql connector"
|
|
apt:
|
|
name: "{{ install_python_prereqs }}"
|
|
state: present
|
|
environment:
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|
|
- name: "{{ role_name }} | install | install python packages"
|
|
pip:
|
|
name: "{{ python_packages }}"
|
|
|
|
- name: "{{ role_name }} | install | install packages required by mysql"
|
|
apt:
|
|
name: "{{ install_prereqs }}"
|
|
state: present
|
|
environment:
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|
|
- name: "{{ role_name }} | install | download and unpack dbdeployer"
|
|
unarchive:
|
|
remote_src: true
|
|
src: "{{ dbdeployer_src }}"
|
|
dest: "{{ dbdeployer_install_dir }}"
|
|
creates: "{{ dbdeployer_installed_file }}"
|
|
register: dbdeployer_tarball_install
|
|
notify:
|
|
- create zookeeper installed file
|
|
until: dbdeployer_tarball_install is not failed
|
|
retries: 6
|
|
delay: 5
|
|
|
|
- name: "{{ role_name }} | install | create symlink"
|
|
file:
|
|
src: "{{ dbdeployer_install_dir }}/dbdeployer-{{ dbdeployer_version }}.linux"
|
|
dest: /usr/local/bin/dbdeployer
|
|
follow: false
|
|
state: link
|
|
|
|
- meta: flush_handlers
|