Added some explanations.

This commit is contained in:
Egon Rijpkema 2018-02-06 13:34:56 +01:00
parent 8da96590ac
commit 68ac7a0a6d
1 changed files with 4 additions and 1 deletions

View File

@ -1,10 +1,13 @@
---
# 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:
- shell: "systemctl stop docker"
- name: Stop docker service
- shell: "systemctl stop docker"
- name: Verify docker is stopped.
systemd:
name: docker
state: stopped