modify the two services people actually use to work with the new service semantics

Cette révision appartient à :
Izaya 2020-06-29 15:31:12 +10:00
Parent 216e0a15c6
révision 417856ebd6
2 fichiers modifiés avec 3 ajouts et 1 suppressions

Voir le fichier

@ -37,7 +37,7 @@ local function spawnShell(fin,fout)
io.input(fin)
io.output(fout):setvbuf("no")
print(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
return os.spawn(shell.interactive, "shell: "..tostring(fin))
return os.spawn(function() local w,r = pcall(shell.interactive) if not w then syslog(r) end end, "shell: "..tostring(fin))
end
local function allocate()
@ -77,3 +77,4 @@ function stop()
os.kill(basepid)
basepid = nil
end
return {start=start,stop=stop}

Voir le fichier

@ -271,3 +271,4 @@ function del_route(to)
cfg.sroutes[to] = nil
saveconfig()
end
return {start=start,stop=stop,set=set,set_route=set_route,del_route=del_route}