Skip to content
Snippets Groups Projects
Verified Commit 8f7516d4 authored by Josef Schlehofer's avatar Josef Schlehofer
Browse files

reforis: update to version 1.3.0

reForis Changelog:
* Add & update translations
* Add ability to set static leases
* Fix language and parsing for points.js
* Update Foris JS library to v5.4.1
* Update pip in virtualenv to latest version
* Move ubus socket path
* Make WS path in lighttpd mode configurable
* NPM audit fix
* Other small improvements

Removed patch to move ubus socket as it was applied in this release
(see changelog)
parent cbb43f84
No related merge requests found
......@@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=reforis
PKG_VERSION:=1.2.1
PKG_VERSION:=1.3.0
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/reforis/reforis
PKG_MIRROR_HASH:=629d232052a415df9372ed09ab718ac6e6756c239a48ae2de84e2e0cbc5466d3
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_MIRROR_HASH:=5c0dac17747153c1f725836b312c6f75fc35a11a85dbcf129fa7ea28385f7566
PKG_SOURCE_VERSION:=feature/reforis-1.3.0
PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz>
PKG_LICENSE:=GPL-3.0-or-later
......
From 59f1cce5ebf2f280bec7795a3839e5ab39bbff1e Mon Sep 17 00:00:00 2001
From: Josef Schlehofer <pepe.schlehofer@gmail.com>
Date: Wed, 21 Jul 2021 14:59:49 +0200
Subject: [PATCH] Move ubus socket path
Since OpenWrt 21.02 and newer, we need to change it, because developers of OpenWrt
they decided that ubusd will run as non-root users, so they moved it.
Reference:
- https://github.com/openwrt/openwrt/commit/2dffadece9a7243a236ce7d91719787a671e23d4#diff-9536a91ee901a062b8e38e62fe624247e76fa4c268c9be6ba68af284ff0f641e
- https://git.openwrt.org/?p=project/ubus.git;a=commit;h=13a4438b4ebdf85d301999e0a615640ac4c9b0a8
---
reforis/config/prod.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/reforis/config/prod.py b/reforis/config/prod.py
index f827eada..3df22872 100644
--- a/reforis/config/prod.py
+++ b/reforis/config/prod.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
+# Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v3.
# See /LICENSE for more information.
@@ -22,7 +22,7 @@ BUSES_CONF = {
'timeout': 30000,
},
'ubus': {
- 'path': '/var/run/ubus.sock',
+ 'path': '/var/run/ubus/ubus.sock',
'timeout': 30000
}
}
--
2.30.2
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment