From 30ff7578ba82f33376f9e7a3afa01ad938fb72ae Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Tue, 13 Jan 2026 17:42:59 +0100 Subject: [PATCH] fix(luci-app-network-tweaks): Set correct file permissions for JS/CSS - Add explicit 644 permissions for overview.js and dashboard.css - Fixes HTTP 403 error when accessing the view Co-Authored-By: Claude Opus 4.5 --- package/secubox/luci-app-network-tweaks/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/secubox/luci-app-network-tweaks/Makefile b/package/secubox/luci-app-network-tweaks/Makefile index 82816815..8923aa98 100644 --- a/package/secubox/luci-app-network-tweaks/Makefile +++ b/package/secubox/luci-app-network-tweaks/Makefile @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-network-tweaks PKG_VERSION:=1.0.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_ARCH:=all PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=CyberMind @@ -23,7 +23,9 @@ endef PKG_FILE_MODES:=/usr/libexec/rpcd/luci.network-tweaks:root:root:755 \ /usr/sbin/network-tweaks-sync:root:root:755 \ /etc/init.d/network-tweaks:root:root:755 \ - /etc/hotplug.d/iface/99-network-tweaks:root:root:755 + /etc/hotplug.d/iface/99-network-tweaks:root:root:755 \ + /www/luci-static/resources/view/network-tweaks/overview.js:root:root:644 \ + /www/luci-static/resources/network-tweaks/dashboard.css:root:root:644 include $(TOPDIR)/feeds/luci/luci.mk