21 lines
207 B
Plaintext
21 lines
207 B
Plaintext
|
|
#!/bin/sh /etc/rc.common
|
||
|
|
|
||
|
|
START=99
|
||
|
|
STOP=15
|
||
|
|
|
||
|
|
boot() {
|
||
|
|
/usr/share/passwall/app.sh boot
|
||
|
|
}
|
||
|
|
|
||
|
|
start() {
|
||
|
|
/usr/share/passwall/app.sh start
|
||
|
|
}
|
||
|
|
|
||
|
|
stop() {
|
||
|
|
/usr/share/passwall/app.sh stop
|
||
|
|
}
|
||
|
|
|
||
|
|
restart() {
|
||
|
|
stop
|
||
|
|
start
|
||
|
|
}
|