Hotfix v8.0.1

This commit is contained in:
buanet
2023-04-17 20:13:50 +02:00
parent b4ee2b2a12
commit 551dc98282
3 changed files with 6 additions and 3 deletions

View File

@@ -1 +1 @@
v8.0.0
v8.0.1

View File

@@ -1,5 +1,8 @@
## Changelog
### v8.0.1 (17.04.2023)
* fix calling of "iob setup first" on slaves ([#335](https://github.com/buanet/ioBroker.docker/issues/335))
### v8.0.0 (20.03.2023)
* update readme and docs
* remove manifests

View File

@@ -302,8 +302,8 @@ else
stop_on_error
fi
# if restored a fresh install, runing "iob setup first" for database init, otherwise check database connection
if [[ -f /opt/iobroker/.fresh_install ]]; then
# if restored a fresh install, running "iob setup first" for database init (but not on slaves!), otherwise check database connection
if [[ -f /opt/iobroker/.fresh_install && "$multihost" != "slave" ]]; then
echo -n "Initializing a fresh installation of ioBroker... "
set +e
bash iob setup first > /opt/iobroker/log/iob_setup_first.log 2>&1