From f311063a42e7e514ac81d84fcad4f96cc525cf8c Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Wed, 7 Jun 2023 00:19:09 +1000 Subject: [PATCH] cleanup my mess --- service/getty.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/service/getty.lua b/service/getty.lua index 54f78c9..c8b9ce6 100644 --- a/service/getty.lua +++ b/service/getty.lua @@ -38,7 +38,6 @@ local function spawnShell(fin,fout) io.output(fout):setvbuf("no") print(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM") print((os.getenv("HOSTNAME") or "unknown") .. " on " .. fin) --- return os.spawn(function() local w,r = pcall(shell.interactive) if not w then syslog(r) end end, "shell: "..tostring(fin)) return os.spawn(shell.interactive, "shell: "..tostring(fin)) end