mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-28 01:11:21 +08:00
23 lines
332 B
Bash
Executable File
23 lines
332 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
start() {
|
|
lua /usr/lib/lua/luci/passwall2/server_app.lua start
|
|
}
|
|
|
|
stop() {
|
|
lua /usr/lib/lua/luci/passwall2/server_app.lua stop
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
reload() {
|
|
echo "Warning: This service does not support configuration reloading"
|
|
echo "Performing full restart instead..."
|
|
restart
|
|
}
|