Merge pull request #336 from buanet/hotfix/issue-335/avoid_setup_first_on_slaves

Hotfix v8.0.1
This commit is contained in:
André Germann
2023-04-17 20:51:07 +02:00
committed by GitHub
3 changed files with 5 additions and 8 deletions

View File

@@ -1 +1 @@
v8.1.0-beta.1
v8.0.1

View File

@@ -1,10 +1,7 @@
## Changelog
### v8.1.0-beta.1 (14.04.2023)
* enhance github actions
* enhance log output of maintenance script on restore ([#333](https://github.com/buanet/ioBroker.docker/issues/333))
* allow iobroker admin to be disabled at startup ([#332](https://github.com/buanet/ioBroker.docker/issues/332))
* allow deletion of objects and states db password with value "none" ([#306](https://github.com/buanet/ioBroker.docker/issues/306))
### 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

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