mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
Fixes deconz otau download issues (#608)
* Fixes for #607 Dry coded * Move mkdir from ikea to run.sh * Fix indenting * Adding release
This commit is contained in:
committed by
Pascal Vizeli
parent
12cadc073a
commit
2f832a9bf1
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.6
|
||||||
|
|
||||||
|
- Adding missing dependencies of deconz
|
||||||
|
- Create otau storage directory on start
|
||||||
|
|
||||||
## 2.5
|
## 2.5
|
||||||
|
|
||||||
- Corrects error in installation instructions steps
|
- Corrects error in installation instructions steps
|
||||||
|
|||||||
@@ -22,6 +22,9 @@ RUN apt-get update \
|
|||||||
libqt5websockets5 \
|
libqt5websockets5 \
|
||||||
libqt5widgets5 \
|
libqt5widgets5 \
|
||||||
sqlite3 \
|
sqlite3 \
|
||||||
|
iputils-ping \
|
||||||
|
iproute2 \
|
||||||
|
wget \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& if [ "${BUILD_ARCH}" = "armhf" ] || [ "${BUILD_ARCH}" = "aarch64" ]; \
|
&& if [ "${BUILD_ARCH}" = "armhf" ] || [ "${BUILD_ARCH}" = "aarch64" ]; \
|
||||||
then \
|
then \
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "deCONZ",
|
"name": "deCONZ",
|
||||||
"version": "2.5",
|
"version": "2.6",
|
||||||
"slug": "deconz",
|
"slug": "deconz",
|
||||||
"description": "Control a ZigBee network with Conbee or RaspBee by Dresden Elektronik",
|
"description": "Control a ZigBee network with Conbee or RaspBee by Dresden Elektronik",
|
||||||
"arch": ["amd64", "armhf"],
|
"arch": ["amd64", "armhf"],
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
#!/usr/bin/env bashio
|
#!/usr/bin/env bashio
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
mkdir -p "/data/otau"
|
||||||
|
|
||||||
# shellcheck disable=SC1091
|
# shellcheck disable=SC1091
|
||||||
. /discovery.sh
|
. /discovery.sh
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user