mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
Fix two superflous warnings
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.5.0] - 2021-01-04
|
||||||
|
- Fix two superflous warnings
|
||||||
|
|
||||||
## [0.4.0] - 2020-12-30
|
## [0.4.0] - 2020-12-30
|
||||||
- Change from sha image tag to v5.1.0
|
- Change from sha image tag to v5.1.0
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ioBroker",
|
"name": "ioBroker",
|
||||||
"version": "0.4.0",
|
"version": "0.5.0",
|
||||||
"webui": "http://[HOST]:[PORT:8081]/",
|
"webui": "http://[HOST]:[PORT:8081]/",
|
||||||
"slug": "iobroker",
|
"slug": "iobroker",
|
||||||
"description": "Open source automation platform",
|
"description": "Open source automation platform",
|
||||||
@@ -29,6 +29,7 @@
|
|||||||
"8086/tcp": "reserved for addition addons"
|
"8086/tcp": "reserved for addition addons"
|
||||||
},
|
},
|
||||||
"stage": "experimental",
|
"stage": "experimental",
|
||||||
"url": "https://github.com/MaxWinterstein/homeassistant-addons/"
|
"url": "https://github.com/MaxWinterstein/homeassistant-addons/",
|
||||||
|
"hassio_role": "default",
|
||||||
|
"hassio_api": true
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
# begin hass addon custom mount block
|
# begin hass addon custom mount block
|
||||||
echo "Symlinking data dir"
|
echo "Symlinking data dir"
|
||||||
mv /opt/iobroker /opt/iobroker_ori # move image brought folder away
|
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
|
ln -s /data/iobroker /opt/iobroker # symlink /data mount
|
||||||
if find /data/iobroker -maxdepth 0 -empty | read v; then
|
if find /data/iobroker -maxdepth 0 -empty | read v; then
|
||||||
echo "Data folder looks unused, will copy initial stuff"
|
echo "Data folder looks unused, will copy initial stuff"
|
||||||
|
|||||||
Reference in New Issue
Block a user