mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-10 18:34:18 +08:00
🏅 Sync 2026-09-05 03:00:50
This commit is contained in:
+2
-2
@@ -6,11 +6,11 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=3proxy
|
PKG_NAME:=3proxy
|
||||||
PKG_VERSION:=0.9.5
|
PKG_VERSION:=0.9.5
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/3proxy/3proxy/tar.gz/$(PKG_VERSION)?
|
PKG_SOURCE_URL:=https://codeload.github.com/3proxy/3proxy/tar.gz/$(PKG_VERSION)?
|
||||||
PKG_HASH:=skip
|
PKG_HASH:=6f6da51d9bba93231e12acd707bb6cf86a1ab9491dc6dd0c79750cb3641541a3
|
||||||
|
|
||||||
PKG_CPE_ID:=cpe:/a:3proxy:3proxy
|
PKG_CPE_ID:=cpe:/a:3proxy:3proxy
|
||||||
PKG_LICENSE:=3proxy Apache-2.0 GPL-2.0-or-later LGPL-2.1-or-later
|
PKG_LICENSE:=3proxy Apache-2.0 GPL-2.0-or-later LGPL-2.1-or-later
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=daed
|
PKG_NAME:=daed
|
||||||
PKG_VERSION:=2026.08.28
|
PKG_VERSION:=2026.08.28
|
||||||
PKG_RELEASE:=51
|
PKG_RELEASE:=52
|
||||||
|
|
||||||
PKG_SOURCE:=daed-src-2026.08.28-73f01b995c34.tar.gz
|
PKG_SOURCE:=daed-src-2026.08.28-73f01b995c34.tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/kenzok8/openwrt-daede/releases/download/daed-src
|
PKG_SOURCE_URL:=https://github.com/kenzok8/openwrt-daede/releases/download/daed-src
|
||||||
|
|||||||
+21
-1
@@ -6,4 +6,24 @@ if ! daed_cleanup_runtime; then
|
|||||||
echo "daed: stale network state could not be removed" >&2
|
echo "daed: stale network state could not be removed" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
exec /usr/bin/daed "$@"
|
|
||||||
|
# Keep daed as a child so a panic or unexpected exit is followed by an
|
||||||
|
# immediate teardown of all kernel/runtime state before procd can respawn us.
|
||||||
|
child_pid=
|
||||||
|
cleanup_child() {
|
||||||
|
[ -n "$child_pid" ] && kill "$child_pid" 2>/dev/null
|
||||||
|
}
|
||||||
|
trap cleanup_child TERM INT
|
||||||
|
|
||||||
|
/usr/bin/daed "$@" &
|
||||||
|
child_pid=$!
|
||||||
|
wait "$child_pid"
|
||||||
|
status=$?
|
||||||
|
child_pid=
|
||||||
|
trap - TERM INT
|
||||||
|
|
||||||
|
if ! daed_cleanup_runtime; then
|
||||||
|
echo "daed: runtime cleanup after exit failed" >&2
|
||||||
|
status=1
|
||||||
|
fi
|
||||||
|
exit "$status"
|
||||||
|
|||||||
@@ -33,7 +33,9 @@ start_service() {
|
|||||||
|
|
||||||
procd_set_param limits core="unlimited"
|
procd_set_param limits core="unlimited"
|
||||||
procd_set_param limits nofile="1000000 1000000"
|
procd_set_param limits nofile="1000000 1000000"
|
||||||
procd_set_param respawn
|
# Avoid an endless crash/respawn loop which can repeatedly reattach dae's
|
||||||
|
# data-plane hooks and make the router management plane unreachable.
|
||||||
|
procd_set_param respawn 3600 5 5
|
||||||
# procd_set_param stdout 1
|
# procd_set_param stdout 1
|
||||||
procd_set_param stderr 1
|
procd_set_param stderr 1
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -10,12 +10,12 @@ include $(INCLUDE_DIR)/kernel.mk
|
|||||||
|
|
||||||
PKG_NAME:=natflow
|
PKG_NAME:=natflow
|
||||||
PKG_VERSION:=20260531
|
PKG_VERSION:=20260531
|
||||||
PKG_RELEASE:=77
|
PKG_RELEASE:=78
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_VERSION).tar.xz
|
||||||
PKG_SOURCE_URL:=https://github.com/ptpt52/natflow.git
|
PKG_SOURCE_URL:=https://github.com/ptpt52/natflow.git
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_VERSION:=8c496c4b63198a20d417d34b8fefa78feadf16c5
|
PKG_SOURCE_VERSION:=da0eb608568f2ff10ce80ee3337db87c8e49611b
|
||||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_MAINTAINER:=Chen Minqiang <ptpt52@gmail.com>
|
PKG_MAINTAINER:=Chen Minqiang <ptpt52@gmail.com>
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
|||||||
Reference in New Issue
Block a user