37 lines
816 B
YAML
37 lines
816 B
YAML
---
|
|
- hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Load variables
|
|
include_vars:
|
|
dir: "{{ dokku_lib_root }}/data/ansible/gitea/vars/"
|
|
extensions:
|
|
- yml
|
|
|
|
- name: Remove host Gitea group
|
|
group:
|
|
name: gitea
|
|
state: absent
|
|
become: true
|
|
|
|
- name: Remove host Gitea user
|
|
user:
|
|
name: gitea
|
|
state: absent
|
|
become: true
|
|
|
|
- name: Remove mariadb database
|
|
shell: "dokku mariadb:destroy gitea --force"
|
|
args:
|
|
removes: /var/lib/dokku/services/mariadb/gitea
|
|
become: true
|
|
|
|
- name: Remove volume mount configuration directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: absent
|
|
with_items:
|
|
- /var/lib/gitea
|
|
- /var/lib/dokku/services/mariadb/gitea
|
|
become: true
|