diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c82a00..56b9c38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ ## Changelog ### v9.0.0-beta.1 (coming soon) +* ignore errors in "silent cleanup" on first start ([#369](https://github.com/buanet/ioBroker.docker/issues/369)) * cleanup/ restructure repo * update nodejs setup process * update base image to debian 12 (bookworm) -* improve security by avoiding running commands as root -* integrate calling maintenance script into iobroker command +* improve security by avoiding root (exept startup script itself) +* restrict iobroker commanline commands (start/ stop) +* integrate maintenance script into iobroker command * move container config files location ### v8.1.0-beta.4 (29.07.2023) diff --git a/debian12/scripts/setup_packages.sh b/debian12/scripts/setup_packages.sh index 75f0d28..cdaa589 100644 --- a/debian12/scripts/setup_packages.sh +++ b/debian12/scripts/setup_packages.sh @@ -78,6 +78,6 @@ fi # Silent Cleanup apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean -rm -rf /tmp/* /var/tmp/* /root/.cache/* /var/lib/apt/lists/* +rm -rf /tmp/* /var/tmp/* /root/.cache/* /var/lib/apt/lists/* || true exit 0 \ No newline at end of file