17 lines
389 B
YAML
17 lines
389 B
YAML
---
|
|
# This playbook will reset the instalation to facilitate a new installation.
|
|
# All data is lost!
|
|
- hosts: all
|
|
become: True
|
|
name: Dummy to gather facts
|
|
tasks:
|
|
- name: Stop docker service
|
|
shell: "systemctl stop docker"
|
|
- name: Verify docker is stopped.
|
|
systemd:
|
|
name: docker
|
|
state: stopped
|
|
- name: remove volumes
|
|
shell: "rm -rf /srv"
|
|
|