From 001d41b342637759efd3ccb8b49a264828768caa Mon Sep 17 00:00:00 2001 From: Max Winterstein Date: Mon, 4 Jan 2021 00:12:20 +0100 Subject: [PATCH] Fix two superflous warnings --- ioBroker/CHANGELOG.md | 3 +++ ioBroker/config.json | 7 ++++--- ioBroker/iobroker_startup.sh | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ioBroker/CHANGELOG.md b/ioBroker/CHANGELOG.md index 727edf5..9bb0539 100644 --- a/ioBroker/CHANGELOG.md +++ b/ioBroker/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [0.5.0] - 2021-01-04 +- Fix two superflous warnings + ## [0.4.0] - 2020-12-30 - Change from sha image tag to v5.1.0 diff --git a/ioBroker/config.json b/ioBroker/config.json index 7d7c9a4..a65eaba 100644 --- a/ioBroker/config.json +++ b/ioBroker/config.json @@ -1,6 +1,6 @@ { "name": "ioBroker", - "version": "0.4.0", + "version": "0.5.0", "webui": "http://[HOST]:[PORT:8081]/", "slug": "iobroker", "description": "Open source automation platform", @@ -29,6 +29,7 @@ "8086/tcp": "reserved for addition addons" }, "stage": "experimental", - "url": "https://github.com/MaxWinterstein/homeassistant-addons/" - + "url": "https://github.com/MaxWinterstein/homeassistant-addons/", + "hassio_role": "default", + "hassio_api": true } \ No newline at end of file diff --git a/ioBroker/iobroker_startup.sh b/ioBroker/iobroker_startup.sh index 5642837..ac092fb 100644 --- a/ioBroker/iobroker_startup.sh +++ b/ioBroker/iobroker_startup.sh @@ -3,7 +3,7 @@ # begin hass addon custom mount block echo "Symlinking data dir" mv /opt/iobroker /opt/iobroker_ori # move image brought folder away -mkdir /data/iobroker || echo 'Thats fine, data folder already exists' +mkdir -p /data/iobroker ln -s /data/iobroker /opt/iobroker # symlink /data mount if find /data/iobroker -maxdepth 0 -empty | read v; then echo "Data folder looks unused, will copy initial stuff"