op-packages/luci-app-smartinfo/root/etc/init.d/smartinfo
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

16 lines
167 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=95
boot() {
return 0
}
start() {
/usr/lib/smartinfo/smart_checker.sh > /dev/null 2>&1 &
}
stop() {
killall -9 smart_checker.sh
}