aboutsummaryrefslogtreecommitdiff
path: root/utils/domoticz/files
Commit message (Collapse)AuthorAge
* domoticz: fix read of "disabled" uci configuration parameterRobert Högberg2022-07-28
| | | | | | | The domoticz init script didn't properly read the "disabled" configuration parameter and instead the service was always started. Signed-off-by: Robert Högberg <robert.hogberg@gmail.com>
* domoticz: update to 4.9700 stable release, enable Python, fix compressionDavid Woodhouse2018-06-25
| | | | | | | | | | | The files in ozwcp/ shouldn't be compressed as there's no gzip handling for those. Also enable Python support — since it can dynamically link with libpython optionally, it's harmless to enable it. Those who want Python plugins can use it. I still want lua-based hardware plugins though. Signed-off-by: David Woodhouse <dwmw2@infradead.org>
* domoticz: update to 3.9571 and clean up FHS handlingDavid Woodhouse2018-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream has merged a simplified version of the FHS patch, with a few changes... Scripts are actually configuration. There are examples, but the point is that you write your own. So they should live in the data directory (e.g. /var/lib/domoticz) not in /usr/share/domoticz. The only exception is the dzVents runtime. So.... the upstream patch handles the dzVents runtime bit. Drop the part of our patch which added -scripts, because it can just be based in the userdata directory and we don't need to change that. Ship the default scripts/ directory in /etc/domoticz/scripts, and on startup make a *symlink* to it from /var/lib/domoticz/scripts. Symlink from /etc/domoticz/scripts/dzVents{data,generated_scripts} to temporary directories under /var/lib/domoticz/dzVents so that those directories (which are written to by Domoticz) don't land on the root file system. Anyone with a writeable file system who *wants* the data/ directory to be persistent, can change that. Just as they can change the userdata config option to point to a real file system somewhere. Also drop the renaming of the OpenZWave Config/ directory. It's purely cosmetric so there's no need for us to carry that change. It can go upstream first, if it really offends anyone. Drop the patches which are now merged upstream, and turn off the newly added USE_OPENSSL_STATIC. Add -noupdates to the command line. Finally, gzip the static www files to save space. In the common case, clients will use "Accept-Encodiong: gzip" and Domoticz will serve them as-is. It can also decompress on the fly if it really has to, but now we aren't asking it to *compress* on the fly, which is probably a losing proposition on an OpenWRT box. Signed-off-by: David Woodhouse <dwmw2@infradead.org>
* domoticz: support -ssldhparam config/command line optionDavid Woodhouse2018-06-04
| | | | Signed-off-by: David Woodhouse <dwmw2@infradead.org>
* domoticz: use 'ln -sf' in serial hotplug scriptDavid Woodhouse2018-06-04
| | | | | | Otherwise, stale symlinks don't get replaced Signed-off-by: David Woodhouse <dwmw2@infradead.org>
* domitcz: fix dzVents scriptsStijn Tintel2017-09-20
| | | | | | | | | | | | | | | | | | | | | | | Domoticz 3.8153 introduced support for dzVents. Unfortunately this was broken by the 902_add-scripts-path, which attempts to make Domoticz more FHS-compliant instead of throwing everything under /opt/domoticz. The problem is that dzVents scripts added via the webinterface will be generated on the filesystem. With the 902_add-scripts-path patch, Domoticz tried to write this to "scriptsdir/dzVents/generated_scripts". As the scriptsdir contains scripts that come with upstream, and are not meant to be changed, this defaults to /usr/share/domoticz/scripts, which is not writeable, so Domoticz is unable to write the script to the filesystem. What is worse is that this silently fails. Fix this by moving the generated_scripts dir to "userdatadir/generated_scripts". The userdatadir defaults to /var/lib/domoticz, which is writeable. Additionally, since this patch does more than just adding the scripts path, rename it to something more appropriate. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* domoticz: removed hardcoded userdata pathStijn Tintel2017-06-29
| | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* domoticz: new packageStijn Tintel2017-03-03
Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>