domoticz: fix chown call
authorEugenio Pérez <redacted>
Sun, 25 Jan 2026 15:20:32 +0000 (17:20 +0200)
committerHannu Nyman <redacted>
Sun, 25 Jan 2026 15:20:32 +0000 (17:20 +0200)
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 <redacted>
[add PKG_RELEASE bump, modify commit message, add Fixes line]
Signed-off-by: Hannu Nyman <redacted>
utils/domoticz/Makefile
utils/domoticz/files/domoticz.init

index d275f2dc7dec1f38cd7a07b7971742571825091e..6b08373dcc05b68f3fd4de378a103b8abfa98756 100644 (file)
@@ -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)?
index eb61bb2d2a59387a147c3ab4c9add6666823f23c..0ff253cf5880730f4de44e8a02c62939013bba43 100644 (file)
@@ -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"
git clone https://git.99rst.org/PROJECT