update 2022-04-11 16:22:56

This commit is contained in:
github-actions[bot]
2022-04-11 16:22:56 +08:00
parent 407373db63
commit 76f3dcbe31
2673 changed files with 1105060 additions and 396 deletions

View File

@ -0,0 +1,30 @@
#!/bin/sh /etc/rc.common
. /lib/functions.sh
rules_set()
{
CFG_FILE="/etc/config/clash"
local section="$1"
config_get "type" "$section" "type" ""
config_get "rulename" "$section" "rulename" ""
config_get "rulenamee" "$section" "rulenamee" ""
if [ -z "$type" ]; then
return
fi
if [ -z "$rulename" ]; then
uci set clash."$section".rulename="$rulenamee"
uci commit clash
fi
}
start(){
config_load "clash"
config_foreach rules_set "rules"
}
start