ignore errors in silent cleanup

This commit is contained in:
buanet
2023-09-04 10:03:18 +02:00
parent 82c98eb906
commit 4c32a3fc67
2 changed files with 5 additions and 3 deletions

View File

@@ -1,11 +1,13 @@
## Changelog ## Changelog
### v9.0.0-beta.1 (coming soon) ### 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 * cleanup/ restructure repo
* update nodejs setup process * update nodejs setup process
* update base image to debian 12 (bookworm) * update base image to debian 12 (bookworm)
* improve security by avoiding running commands as root * improve security by avoiding root (exept startup script itself)
* integrate calling maintenance script into iobroker command * restrict iobroker commanline commands (start/ stop)
* integrate maintenance script into iobroker command
* move container config files location * move container config files location
### v8.1.0-beta.4 (29.07.2023) ### v8.1.0-beta.4 (29.07.2023)

View File

@@ -78,6 +78,6 @@ fi
# Silent Cleanup # Silent Cleanup
apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean 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 exit 0