Added pre installation and unindtallation
[ealt-edge.git] / ocd / infra / playbooks / roles / k3s / tasks / install.yml
index a9968c3..e7a133b 100644 (file)
   shell:
     cmd: which k3s
   register: result
-  ignore_errors: true
+  failed_when: false
+  no_log: True
+
+- debug:
+    msg: k3s is already present
+  when: result.rc == 0
+
+- meta: end_play
+  when: result.rc == 0
 
 - debug: var=ansible_host