From: Eugenio Pérez Date: Sun, 25 Jan 2026 15:20:32 +0000 (+0200) Subject: domoticz: fix chown call X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=c32daaa2a4b3cc59d7efaae35b296776efbd628b;p=openwrt-packages.git domoticz: fix chown call Busybox's chown stops reading the username at the dot, so only user was changed and the group remained as root. Properly use ':' instead of '.' as the delimeter. Fixes: a98239c "domoticz: update to 3.9571 and clean up FHS handling" Signed-off-by: Eugenio Pérez [add PKG_RELEASE bump, modify commit message, add Fixes line] Signed-off-by: Hannu Nyman --- diff --git a/utils/domoticz/Makefile b/utils/domoticz/Makefile index d275f2dc7..6b08373dc 100644 --- a/utils/domoticz/Makefile +++ b/utils/domoticz/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=domoticz PKG_VERSION:=2025.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/domoticz/domoticz/tar.gz/$(PKG_VERSION)? diff --git a/utils/domoticz/files/domoticz.init b/utils/domoticz/files/domoticz.init index eb61bb2d2..0ff253cf5 100644 --- a/utils/domoticz/files/domoticz.init +++ b/utils/domoticz/files/domoticz.init @@ -51,7 +51,7 @@ start_domoticz() { for DIR in data generated_scripts; do [ -d /var/lib/domoticz/dzVents/$DIR ] || { mkdir -p /var/lib/domoticz/dzVents/$DIR - chown domoticz.domoticz /var/lib/domoticz/dzVents/$DIR + chown domoticz:domoticz /var/lib/domoticz/dzVents/$DIR } done procd_append_param command -userdata "$userdata"