mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 02:51:11 +08:00
16 lines
167 B
Bash
Executable File
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
|
|
}
|
|
|