10 lines
250 B
Plaintext
10 lines
250 B
Plaintext
--:Minify:--
|
|
local kernel = ...
|
|
|
|
kernel.processes.login = function()
|
|
local ok, err = pcall(kernel.hpv.execspawn, "/bin/login", "login")
|
|
if not ok then
|
|
kernel.log("Failed to exec /bin/login: " .. tostring(err), "ERROR", 2)
|
|
end
|
|
end
|