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

This commit is contained in:
Izaya 2020-06-29 15:31:12 +10:00
父節點 216e0a15c6
當前提交 417856ebd6
共有 2 個檔案被更改,包括 3 行新增1 行删除

查看文件

@ -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}

查看文件

@ -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}