1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
- name: "[OpenRC] Disable and stop service: mariadb"
service:
name: mariadb
enabled: no
state: stopped
when:
- ansible_service_mgr == "openrc"
- name: "[systemd] Disable and stop service: mariadb"
systemd:
name: mariadb
enabled: no
state: stopped
when:
- ansible_service_mgr == "systemd"
- name: "[Alpine] Remove package: mariadb mariadb-common mariadb-client python-pymysql"
apk:
name: mariadb mariadb-common mariadb-client python-pymysql
state: absent
when:
- ansible_distribution == "Alpine"
- name: "[Archlinux] Remove package: mariadb python-pymysql"
pacman:
name:
- mariadb
- python-pymysql
state: absent
when:
- ansible_distribution == "Archlinux"