]> ###2020.12.03 - Updated kata.runtime.ui package to prevent hanging at bootup. ###2020.06.13 - Added kata.runtime.ui package. - Docker daemon restart is no longer required on install. ###2020.03.04 - Kata Runtime Release 1.10.1 ###2020.01.16 - Removed docker daemon.json from the kata runtime package. - Added code to install daemon.json to the .plg file. ###2020.01.14 - Added default ulimits to docker daemon.json - Added description to appear on unRAID plugin page. ###2020.01.09a - Reverted change to docker daemon.json and fixed the default kata config file. ###2020.01.09 - Fixed kata runtime arguments in docker daemon.json ###2020.01.06 - Initial Release # Remove old 'source' files rm -f $(ls &plugdir;/&katapkgname;*.txz 2>/dev/null|grep -v '&katapkgversion;') rm -f $(ls &plugdir;/&uipkgname;*.txz 2>/dev/null|grep -v '&uipkgversion;') # Backup existing daemon.json if it exists if [ -f "/etc/docker/daemon.json" ]; then cp /etc/docker/daemon.json /etc/docker/daemon.bak; fi https://github.com/&github;/releases/download/&katapkgversion;/&katapkgname;-&katapkgversion;-x86_64.txz &katapkgmd5; https://github.com/&github;/releases/download/&uipkgversion;/&uipkgname;-&uipkgversion;-x86_64.txz &uipkgmd5; echo "" echo "----------------------------------------------------" echo " &name; has been installed." echo " Version: &version;" echo " Runtime version: &katapkgversion;" echo " UI package version: &uipkgversion;" echo "----------------------------------------------------" echo "" removepkg &katapkgname;-&katapkgversion;-x86_64 removepkg &uipkgname;-&uipkgversion;-x86_64 # Remove plugin related files rm -rf &plugdir; # Remove daemon.json rm /etc/docker/daemon.json #Restore old daemon.json if it exists if [ -f "/etc/docker/daemon.bak" ]; then cp /etc/docker/daemon.bak /etc/docker/daemon.json; rm /etc/docker/daemon.bak; fi