2020-02-25 18:29:39 +01:00
|
|
|
#!/bin/sh
|
2020-02-26 21:05:38 +01:00
|
|
|
|
2020-02-25 18:29:39 +01:00
|
|
|
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
|
2020-02-26 21:05:38 +01:00
|
|
|
|
2020-02-25 18:29:39 +01:00
|
|
|
if which rc-update; then
|
|
|
|
rc-update delete k3s default
|
|
|
|
fi
|
|
|
|
|
2020-02-26 21:05:38 +01:00
|
|
|
for unit in /etc/systemd/system/k3s*.service; do
|
|
|
|
[ -f "$unit" ] && rm -f "$unit"
|
|
|
|
done
|
2020-02-25 18:29:39 +01:00
|
|
|
|
|
|
|
remove_uninstall() {
|
2020-02-26 22:52:56 +01:00
|
|
|
[ -f /usr/local/bin/k3s-uninstall.sh ] && rm -f /usr/local/bin/k3s-uninstall.sh
|
2020-02-25 18:29:39 +01:00
|
|
|
}
|
|
|
|
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
|
2020-02-26 21:05:38 +01:00
|
|
|
if [ -L "{{ k3s_install_dir }}/$cmd" ]; then
|
|
|
|
rm -f "{{ k3s_install_dir }}/$cmd"
|
2020-02-25 18:29:39 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2020-02-26 21:05:38 +01:00
|
|
|
[ -d /etc/rancher/k3s ] && rm -rf /etc/rancher/k3s
|
|
|
|
[ -d /var/lib/rancher/k3s ] && rm -rf /var/lib/rancher/k3s
|
|
|
|
[ -d /var/lib/kubelet ] && rm -rf /var/lib/kubelet
|
|
|
|
for bin in {{ k3s_install_dir }}/k3s*; do
|
|
|
|
[ -f "$bin" ] && rm -f "$bin"
|
|
|
|
done
|
2020-02-26 22:52:56 +01:00
|
|
|
[ -f /usr/local/bin/k3s-killall.sh ] && rm -f /usr/local/bin/k3s-killall.sh
|