immortalwrt/package/lienol/luci-app-passwall/root/etc/init.d/passwall_server

16 lines
212 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
START=99
start() {
/usr/lib/lua/luci/model/cbi/passwall/server/api/app.lua start
}
stop() {
/usr/lib/lua/luci/model/cbi/passwall/server/api/app.lua stop
}
restart() {
stop
start
}