Skip to content
Snippets Groups Projects
Commit deaf2870 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !1321: Redirect webserv.lua stdout and stderr to /dev/null

Fixes #758
parents b46be0d1 6e573099
Branches
Tags
2 merge requests!1327Update manager branch with the newest changes from master,!1321Redirect webserv.lua stdout and stderr to /dev/null
Pipeline #101717 passed with stages
in 4 minutes and 45 seconds
......@@ -46,7 +46,7 @@ env.KRESD_NO_LISTEN = true
local function start_webserver()
-- srvout = io.popen('luajit webserv.lua')
-- TODO
os.execute('luajit webserv.lua &')
os.execute('luajit webserv.lua >/dev/null 2>&1 &')
-- assert(srvout, 'failed to start webserver')
end
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment