made rc search for services in the pkgfs

This commit is contained in:
Izaya 2020-06-06 19:50:28 +10:00
parent 45c70cbaa6
commit 6a39fe1743
1 changed files with 1 additions and 1 deletions

View File

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