Unverified Commit 3e0c982a authored by anon-software's avatar anon-software Committed by GitHub
Browse files

Better cleanup with reset playbook (#353)



* Better cleanup with reset playbook

The install playbook adds some convenience commands into the user's
.bashrc. If K3s is uninstalled, these commands produce errors. Since
they are eaily identifiable, it is trivial to remove them to improve
the user's experience.

Signed-off-by: default avatarMarko Vukovic <8951449+anon-software@users.noreply.github.com>
parent 61ba8b57
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -31,3 +31,12 @@
      ansible.builtin.file:
        path: /etc/rancher/k3s/config.yaml
        state: absent

- name: Undo user setup
  hosts: server
  tasks:
    - name: Remove K3s commands from ~/.bashrc
      ansible.builtin.lineinfile:
        path: "~{{ ansible_user }}/.bashrc"
        search_string: "Added by k3s-ansible"
        state: absent