mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-10 15:33:30 +01:00
39 lines
880 B
Text
39 lines
880 B
Text
|
#!/bin/sh
|
||
|
set -x
|
||
|
[ $(id -u) -eq 0 ] || exec sudo $0 $@
|
||
|
|
||
|
/usr/local/bin/k3s-killall.sh
|
||
|
|
||
|
if which systemctl; then
|
||
|
systemctl disable k3s
|
||
|
systemctl reset-failed k3s
|
||
|
systemctl daemon-reload
|
||
|
fi
|
||
|
if which rc-update; then
|
||
|
rc-update delete k3s default
|
||
|
fi
|
||
|
|
||
|
rm -f /etc/systemd/system/k3s.service
|
||
|
rm -f /etc/systemd/system/k3s.service.env
|
||
|
|
||
|
remove_uninstall() {
|
||
|
rm -f /usr/local/bin/k3s-uninstall.sh
|
||
|
}
|
||
|
trap remove_uninstall EXIT
|
||
|
|
||
|
if (ls /etc/systemd/system/k3s*.service || ls /etc/init.d/k3s*) >/dev/null 2>&1; then
|
||
|
set +x; echo 'Additional k3s services installed, skipping uninstall of k3s'; set -x
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
for cmd in kubectl crictl ctr; do
|
||
|
if [ -L /usr/local/bin/$cmd ]; then
|
||
|
rm -f /usr/local/bin/$cmd
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
rm -rf /etc/rancher/k3s
|
||
|
rm -rf /var/lib/rancher/k3s
|
||
|
rm -rf /var/lib/kubelet
|
||
|
rm -f /usr/local/bin/k3s
|
||
|
rm -f /usr/local/bin/k3s-killall.sh
|