update 2024-07-10 14:01:01

This commit is contained in:
actions-user 2024-07-10 14:01:01 +08:00
parent 85ec6f1521
commit 7221d534f1
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ LUCI_DEPENDS:=+curl +opkg +luci-base +tar +coreutils +coreutils-stat +libuci-lua
LUCI_EXTRA_DEPENDS:=luci-lib-taskd (>=1.0.19)
LUCI_PKGARCH:=all
PKG_VERSION:=0.1.24-1
PKG_VERSION:=0.1.25-0
# PKG_RELEASE MUST be empty for luci.mk
PKG_RELEASE:=

View File

@ -483,7 +483,7 @@ function entrysh()
local lock, msg = flock("/var/lock/istore-entrysh.lock", "lock")
local meta
for _, meta in ipairs(installed) do
if meta.autoconf ~= nil and meta.uci ~= nil and luci.util.contains(meta.autoconf, "entrysh")
if meta.flags ~= nil and meta.uci ~= nil and luci.util.contains(meta.flags, "entrysh")
and (candidate == nil or luci.util.contains(candidate, meta.name)) then
local entryfile = "/usr/libexec/istoree/" .. meta.name .. ".sh"
local ucifile = "/etc/config/" .. meta.uci

View File

@ -237,7 +237,7 @@ paths:
tags:
- entrysh
summary: 查询插件运行状态,主要为了获取入口信息。
description: 调用前应该检查meta数据中autoconf数组包含entrysh注意如果是安装插件则检查服务器端的autoconf如果是调用已安装插件则检查路由器端的autoconf
description: 调用前应该检查meta数据中flags数组包含entrysh注意如果是安装插件则检查服务器端的flags如果是调用已安装插件则检查路由器端的flags
parameters:
- in: "query"
name: "token"