mirror of
https://github.com/ShadowKatStudios/OC-Minitel.git
synced 2024-11-26 11:58:06 +11:00
Compare commits
No commits in common. "f0527243b4ebf3577b80df2b8ff6f63a022425ac" and "5679885592b6ab9507f3bc597cc9fe864548e08b" have entirely different histories.
f0527243b4
...
5679885592
@ -1,17 +1,17 @@
|
||||
local fsproxy = require "fsproxy"
|
||||
local fs = require "filesystem"
|
||||
local shell = require "shell"
|
||||
local rpc = require "rpc"
|
||||
local fs = require "filesystem"
|
||||
|
||||
local tA, tO = shell.parse(...)
|
||||
local tA = {...}
|
||||
if #tA < 1 then
|
||||
print("Usage: exportfs <directory> [-d] [--rw] [--name=<name>]")
|
||||
print("Usage: exportfs <directory> [directory] ...")
|
||||
return
|
||||
end
|
||||
local px = fsproxy.new(tA[1], not tO.rw)
|
||||
local name = tO.name or tA[1]
|
||||
|
||||
for k,v in pairs(tA) do
|
||||
local px = fsproxy.new(v)
|
||||
for l,m in pairs(px) do
|
||||
m = not tO.d and m or nil
|
||||
rpc.register("fs_"..name.."_"..l,m)
|
||||
rpc.register("fs_"..v.."_"..l,m)
|
||||
end
|
||||
print(v)
|
||||
end
|
||||
print(string.format("%s (%s)", name, (tO.rw and "rw") or "ro"))
|
||||
|
@ -30,7 +30,7 @@ function fsproxy.new(path,wp) -- string boolean -- table -- Returns a proxy obje
|
||||
end
|
||||
local handles = {}
|
||||
function proxy.isReadOnly()
|
||||
return wp or originalProxy.isReadOnly()
|
||||
return originalProxy.isReadOnly()
|
||||
end
|
||||
function proxy.getLabel()
|
||||
return originalProxy.getLabel()
|
||||
|
Loading…
Reference in New Issue
Block a user