Commit 54629a46 authored by Julien DOCHE's avatar Julien DOCHE
Browse files

Change reset deletion order to avoid racecondition



If the k3s binary is launched after the deletion of `/var/lib/rancher/k3s`, k3s
will automatically create this directory. This change deletes the k3s binary
first so that it cannot be called after `/var/lib/rancher/k3s` is deleted

Signed-off-by: default avatarJulien DOCHE <julien.doche@gmail.com>
parent f1163ffc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,12 +30,12 @@
    name: "{{ item }}"
    state: absent
  with_items:
    - /usr/local/bin/k3s
    - "{{ systemd_dir }}/k3s.service"
    - "{{ systemd_dir }}/k3s-node.service"
    - /etc/rancher/k3s
    - /var/lib/kubelet
    - /var/lib/rancher/k3s
    - /usr/local/bin/k3s

- name: daemon_reload
  systemd: