Fix for issue 1326, updated install.sh

Fix for issue 1326, added lines to delete /run/k3s and /run/flannel in create_uninstall() function.
This commit is contained in:
sen-subhabrata 2020-04-04 14:42:12 +05:30 committed by GitHub
parent ce10c1f080
commit 4006bb57d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -594,6 +594,8 @@ rm -rf /var/lib/rancher/k3s
rm -rf /var/lib/kubelet
rm -f ${BIN_DIR}/k3s
rm -f ${KILLALL_K3S_SH}
rm -f /run/k3s
rm -f /run/flannel
EOF
$SUDO chmod 755 ${UNINSTALL_K3S_SH}
$SUDO chown root:root ${UNINSTALL_K3S_SH}