mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
95f59a0272
* Put Lemmy in /srv/lemmy instead of /lemmy as recommended by FHS * Extract lemmy_base_dir * Complain if lemmy_base_dir not set
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
---
|
|
- hosts: all
|
|
|
|
vars_prompt:
|
|
|
|
- name: confirm_uninstall
|
|
prompt: "Do you really want to uninstall Lemmy? This will delete all data and can not be reverted [yes/no]"
|
|
private: no
|
|
|
|
- name: delete_certs
|
|
prompt: "Delete certificates? Select 'no' if you want to reinstall Lemmy [yes/no]"
|
|
private: no
|
|
|
|
tasks:
|
|
- name: end play if no confirmation was given
|
|
debug:
|
|
msg: "Uninstall cancelled, doing nothing"
|
|
when: not confirm_uninstall|bool
|
|
|
|
- meta: end_play
|
|
when: not confirm_uninstall|bool
|
|
|
|
- name: stop docker-compose
|
|
docker_compose:
|
|
project_src: '{{lemmy_base_dir}}'
|
|
state: absent
|
|
|
|
- name: delete data
|
|
file:
|
|
path: '{{item.path}}'
|
|
state: absent
|
|
with_items:
|
|
- path: '{{lemmy_base_dir}}'
|
|
- path: '/etc/nginx/sites-enabled/lemmy.conf'
|
|
|
|
- name: Remove a volume
|
|
docker_volume:
|
|
name: '{{item.name}}'
|
|
state: absent
|
|
with_items:
|
|
- name: 'lemmy_lemmy_db'
|
|
- name: 'lemmy_lemmy_pictshare'
|
|
|
|
- name: delete entire ecloud folder
|
|
file:
|
|
path: '/mnt/repo-base/'
|
|
state: absent
|
|
when: delete_certs|bool
|
|
|
|
- name: remove certbot cronjob
|
|
cron:
|
|
name: certbot-renew-lemmy
|
|
state: absent
|
|
|