update 2026-08-11 16:47:57

This commit is contained in:
action
2026-08-11 16:47:58 +08:00
parent c63c46f0ce
commit 903417940c
1954 changed files with 1523037 additions and 30 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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
}