mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-31 06:31:17 +08:00
38 lines
650 B
Bash
Executable File
38 lines
650 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
boot_func() {
|
|
config_load passwall_server
|
|
config_get start_delay global start_delay 90
|
|
case "$start_delay" in
|
|
''|*[!0-9]*) start_delay=90 ;;
|
|
*) [ "$start_delay" -le 600 ] 2>/dev/null || start_delay=90 ;;
|
|
esac
|
|
[ "$start_delay" -gt 0 ] && sleep "$start_delay"
|
|
restart
|
|
}
|
|
|
|
boot() {
|
|
boot_func >/dev/null 2>&1 &
|
|
}
|
|
|
|
start() {
|
|
lua /usr/lib/lua/luci/passwall/server_app.lua start
|
|
}
|
|
|
|
stop() {
|
|
lua /usr/lib/lua/luci/passwall/server_app.lua stop
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
reload() {
|
|
echo "Warning: This service does not support configuration reloading"
|
|
echo "Performing full restart instead..."
|
|
restart
|
|
}
|