luci-app-cjdns: Add rpcd acl file (#576)

Signed-off-by: William Fleurant <meshnet@protonmail.com>
This commit is contained in:
William Fleurant 2020-06-09 23:20:43 -04:00 committed by GitHub
parent 5e4756d7e7
commit 83a3fa91b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 2 deletions

View File

@ -18,7 +18,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-cjdns
PKG_VERSION:=1.3
PKG_RELEASE:=7
PKG_RELEASE:=8
PKG_MAINTAINER:=William Fleurant <meshnet@protonmail.com>
PKG_LICENSE:=GPL-3.0-or-later
@ -45,8 +45,9 @@ define Build/Compile
endef
define Package/luci-app-cjdns/install
$(INSTALL_DIR) $(1)/usr/lib/lua/luci
$(INSTALL_DIR) $(1)/usr/lib/lua/luci $(1)/usr/share/rpcd/acl.d
$(CP) ./luasrc/* $(1)/usr/lib/lua/luci
$(CP) ./files/luci-app-cjdns.json $(1)/usr/share/rpcd/acl.d
endef
$(eval $(call BuildPackage,luci-app-cjdns))

View File

@ -0,0 +1,15 @@
{
"luci-app-cjdns": {
"description": "Grant access to LuCI app cjdns",
"read": {
"uci": [ "cjdns" ]
},
"write": {
"file": {
"/usr/bin/cjdrouteconf": [ "exec" ]
},
"uci": [ "cjdns" ]
}
}
}