summaryrefslogtreecommitdiff
path: root/package/system/rpcd
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-09-11 12:13:33 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-09-11 12:13:33 +0000
commit106f3eab7950b1aeeb943a5c3adbde7a50185a61 (patch)
tree6f97db942817983e711503ce0ce4ebf2c26f09b4 /package/system/rpcd
parent3668004858bdbf74eee60fcf91c5a0bba1ea184b (diff)
downloadmtk-20170518-106f3eab7950b1aeeb943a5c3adbde7a50185a61.zip
mtk-20170518-106f3eab7950b1aeeb943a5c3adbde7a50185a61.tar.gz
mtk-20170518-106f3eab7950b1aeeb943a5c3adbde7a50185a61.tar.bz2
rpcd: update to git head
- introduces persistent null session to allow access to procedures without login - implements session.login procedure to support user logins via json-rpc SVN-Revision: 37941
Diffstat (limited to 'package/system/rpcd')
-rw-r--r--package/system/rpcd/Makefile12
-rw-r--r--package/system/rpcd/files/rpcd.config7
2 files changed, 17 insertions, 2 deletions
diff --git a/package/system/rpcd/Makefile b/package/system/rpcd/Makefile
index e6bf3a9..f61f93e 100644
--- a/package/system/rpcd/Makefile
+++ b/package/system/rpcd/Makefile
@@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=rpcd
-PKG_VERSION:=2013-09-09
+PKG_VERSION:=2013-09-11
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=git://nbd.name/luci2/rpcd.git
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_VERSION:=22fbf13086653cba0c60d60ceb7baba2f33a034d
+PKG_SOURCE_VERSION:=ae63188069e433c20b8add7b0fba636f36551ed0
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
@@ -48,11 +48,19 @@ define Package/rpcd/description
functionality to frontend programs via JSON-RPC.
endef
+define Package/rpcd/conffiles
+/etc/config/rpcd
+endef
+
define Package/rpcd/install
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/rpcd.init $(1)/etc/init.d/rpcd
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/rpcd $(1)/sbin/rpcd
+ $(INSTALL_DIR) $(1)/usr/share/rpcd/acl.d
+ $(INSTALL_DATA) $(PKG_BUILD_DIR)/unauthenticated.json $(1)/usr/share/rpcd/acl.d/unauthenticated.json
+ $(INSTALL_DIR) $(1)/etc/config
+ $(INSTALL_CONF) ./files/rpcd.config $(1)/etc/config/rpcd
endef
diff --git a/package/system/rpcd/files/rpcd.config b/package/system/rpcd/files/rpcd.config
new file mode 100644
index 0000000..499ea27
--- /dev/null
+++ b/package/system/rpcd/files/rpcd.config
@@ -0,0 +1,7 @@
+
+config login
+ option username 'root'
+ option password '$p$root'
+ list read '*'
+ list write '*'
+