munomode
[ealt-edge.git] / ocd / infra / playbooks / roles / eg_registry / tasks / uninstall.yml
index f35b6d4..111b1e3 100644 (file)
 
 - name: Stop registry
   command: docker stop registry
+  ignore_errors: yes
+  no_log: True
 
 - name: Remove registry
   command: docker rm -v registry
+  ignore_errors: yes
+  no_log: True
 
 - name: Remove tmp file
-  command: rm -v /tmp/eg_registry
+  command: rm -rf /tmp/eg_registry
+  ignore_errors: yes
+  no_log: True