Cut playbook that are now handled by the test-containers

This commit is contained in:
Laurent Indermuehle 2023-01-19 13:56:58 +01:00
parent db72c7948b
commit 2254e72d6b
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
3 changed files with 0 additions and 37 deletions

View file

@ -1,11 +0,0 @@
---
# Is some tests, we use the local mysql client with the shell module.
- name: "{{ role_name }} | client | Install mysql client"
ansible.builtin.apt:
name:
- "{{ db_engine ~ '-client' }}"
state: present
environment:
DEBIAN_FRONTEND: noninteractive

View file

@ -1,18 +0,0 @@
---
# - name: "{{ role_name }} | Connector | Install requirements for mysqlclient"
# ansible.builtin.apt:
# name:
# - python3-dev
# - default-libmysqlclient-dev
# - build-essential
# state: present
# environment:
# DEBIAN_FRONTEND: noninteractive
# when:
# - connector_name == 'mysqlclient'
# - name: "{{ role_name }} | Connector | Install python packages"
# ansible.builtin.pip:
# name: "{{ connector_name_version }}"
# state: present

View file

@ -12,11 +12,3 @@
- name: Set variables
ansible.builtin.import_tasks:
file: setvars.yml
# - name: Install MySQL local client
# ansible.builtin.import_tasks:
# file: client.yml
# - name: Install MySQL Python connector
# ansible.builtin.import_tasks:
# file: connector.yml