Browse Source

made rc search for services in the pkgfs

master
Izaya 3 years ago
parent
commit
6a39fe1743
  1. 2
      lib/rc.lua

2
lib/rc.lua

@ -29,7 +29,7 @@ function rc.load(name,force) -- string boolean -- table -- Attempts to load serv
end
if service[name] then return true end
service[name] = setmetatable({},{__index=_G})
local f = io.open("/boot/service/"..name..".lua","rb")
local f = io.open("/boot/service/"..name..".lua","rb") or io.open("/pkg/service/"..name..".lua","rb")
local res = load(f:read("*a"),name,"t",service[name])()
f:close()
return res

Loading…
Cancel
Save