mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-21 04:45:29 +08:00
25 lines
299 B
Plaintext
25 lines
299 B
Plaintext
![]() |
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=45
|
||
|
STOP=89
|
||
|
|
||
|
start() {
|
||
|
service_start /usr/bin/pcat-manager -D
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /usr/bin/pcat-manager
|
||
|
}
|
||
|
|
||
|
restart() {
|
||
|
killall -USR1 pcat-manager
|
||
|
stop
|
||
|
start
|
||
|
}
|
||
|
|
||
|
shutdown() {
|
||
|
touch /tmp/pcat-manager-shutdown.tmp
|
||
|
stop
|
||
|
rfkill block wwan 2>/dev/null || true
|
||
|
}
|