small-package/luci-app-poweroff/luasrc/controller/poweroff.lua

10 lines
281 B
Lua
Raw Normal View History

2023-07-14 16:24:09 +08:00
module("luci.controller.poweroff",package.seeall)
function index()
entry({"admin","system","poweroff"},template("poweroff"),_("PowerOff"),99)
entry({"admin","system","poweroff","call"},post("action_poweroff"))
end
function action_poweroff()
luci.util.exec("/sbin/poweroff")
end