mirror of
https://github.com/openwrt/luci.git
synced 2026-06-17 17:03:20 +04:00
1b47d9c353
Add a keep.d file to preserve the rustdesk configuration and binaries across sysupgrades. The /etc/rustdesk directory contains the encryption keys and database, and /usr/bin/ contains the hbbr, hbbs, and rustdesk-utils binaries which need to be retained. Signed-off-by: Guilherme Cardoso <luminoso+github@gmail.com>
21 lines
477 B
Makefile
21 lines
477 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=20260313
|
|
PKG_RELEASE:=1
|
|
PKG_NAME:=luci-app-rustdesk-server
|
|
PKG_MAINTAINER:=Guilherme Cardoso <luminoso@gmail.com>
|
|
|
|
LUCI_TITLE:=LuCI support for RustDesk Server
|
|
LUCI_DEPENDS:=+luci-base +rpcd +rpcd-mod-ucode
|
|
LUCI_PKGARCH:=all
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/rustdesk-server
|
|
endef
|
|
|
|
include ../../luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|