added a wake-on-LAN beacon daemon

This commit is contained in:
Izaya 2019-10-24 01:42:56 +11:00
parent 6cbe2d6479
commit d8b6501b57
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,64 @@
local serial = require "serialization"
local component = require "component"
local event = require "event"
local timer = -1
local cfg = {}
cfg.broadcast = true
cfg.receive = true
cfg.delay = 60
cfg.port = 3442
cfg.message = "WoLBeacon"
local function saveConfig()
local f = io.open("/etc/wolbeacon.lua","wb")
if not f then
return false
end
f:write(serial.serialize(cfg))
f:close()
end
local function broadcast()
for modem in component.list("modem") do
component.invoke(modem,"broadcast",cfg.port,cfg.message)
end
end
local function loadConfig()
local f = io.open("/etc/wolbeacon.lua","rb")
if not f then
saveConfig()
return false
end
cfg = serial.unserialize(f:read("*a")) or cfg
f:close()
end
function start()
loadConfig()
if cfg.receive then
for modem in component.list("modem") do
component.invoke(modem,"setWakeMessage",cfg.message)
end
else
for modem in component.list("modem") do
component.invoke(modem,"setWakeMessage",nil)
end
end
if cfg.broadcast then
timer = event.timer(cfg.delay, broadcast, math.huge)
end
end
function stop()
event.cancel(timer)
timer = -1
end
function reload()
stop()
start()
end

View File

@ -128,4 +128,13 @@
authors = "Izaya",
repo = "tree/master/"
},
["wolbeacon"] = {
files = {
["master/WoLBeacon/OpenOS/etc/rc.d/wolbeacon.lua"] = "//etc/rc.d",
},
name = "WoL Beacon",
description = "Wake on LAN daemon",
authors = "Izaya",
repo = "tree/master/"
},
}