added programs to export and import filesystems over the network

This commit is contained in:
Izaya 2019-11-26 21:35:06 +11:00
förälder f9c8000080
incheckning 2e10fb23b4
2 ändrade filer med 20 tillägg och 0 borttagningar

11
exec/exportfs.lua Normal file
Visa fil

@ -0,0 +1,11 @@
local rpcs = require "rpc"
local ufs = require "unionfs"
local tA = {...}
local path = "/"..table.concat(fs.segments(tA[1]),"/")
local px = ufs.create(path)
for k,v in pairs(px) do
rpcs.register(path.."_"..k,v)
print(path.."_"..k)
end

9
exec/importfs.lua Normal file
Visa fil

@ -0,0 +1,9 @@
local rpc = require "rpc"
local tA = {...}
local host, rpath, lpath = tA[1], tA[2], tA[3]
local px = rpc.proxy(host,rpath.."_")
function px.getLabel()
return host..":"..rpath
end
fs.mount(lpath,px)