first commit - install and upgrade mariaDB on debian system through official mariaDB repo

This commit is contained in:
Ludovic Cartier
2025-09-24 12:21:22 +02:00
commit 278dba2c02
10 changed files with 386 additions and 0 deletions

15
tasks/requirements.yml Normal file
View File

@@ -0,0 +1,15 @@
---
- name: mariadb | apt update cache
ansible.builtin.apt:
update_cache: yes
cache_valid_time: 86400
- name: mariadb | install requirements
ansible.builtin.apt:
name:
- apt-transport-https
- lsb-release
- ca-certificates
- curl
state: present