Browse Source

added programs to export and import filesystems over the network

pull/1/head
XeonSquared 4 years ago
parent
commit
2e10fb23b4
2 changed files with 20 additions and 0 deletions
  1. +11
    -0
      exec/exportfs.lua
  2. +9
    -0
      exec/importfs.lua

+ 11
- 0
exec/exportfs.lua View File

@@ -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
- 0
exec/importfs.lua View File

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

Loading…
Cancel
Save