From 551dc982821a6d071f19de31cb55f96bcc740398 Mon Sep 17 00:00:00 2001 From: buanet Date: Mon, 17 Apr 2023 20:13:50 +0200 Subject: [PATCH 1/2] Hotfix v8.0.1 --- .VERSION | 2 +- CHANGELOG.md | 3 +++ debian/scripts/iobroker_startup.sh | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.VERSION b/.VERSION index e4842dc..444448d 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -v8.0.0 \ No newline at end of file +v8.0.1 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0667261..1a73879 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/debian/scripts/iobroker_startup.sh b/debian/scripts/iobroker_startup.sh index f3b139e..2dd9082 100644 --- a/debian/scripts/iobroker_startup.sh +++ b/debian/scripts/iobroker_startup.sh @@ -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 From 97c5e4993d4d9ed857960d73ba14bc99dddcbc15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Germann?= Date: Mon, 17 Apr 2023 20:50:30 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9795301..1a73879 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +3,6 @@ ### v8.0.1 (17.04.2023) * fix calling of "iob setup first" on slaves ([#335](https://github.com/buanet/ioBroker.docker/issues/335)) -### 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.0 (20.03.2023) * update readme and docs * remove manifests