diff --git a/lib/rc.lua b/lib/rc.lua index 9c6c084..7bc197a 100644 --- a/lib/rc.lua +++ b/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