add the -d option to exportfs to allow removing exports

This commit is contained in:
Izaya 2020-10-17 10:45:36 +11:00
parent 69815096fe
commit f0527243b4
1 changed files with 2 additions and 1 deletions

View File

@ -5,12 +5,13 @@ local rpc = require "rpc"
local tA, tO = shell.parse(...)
if #tA < 1 then
print("Usage: exportfs <directory> [--rw] [--name=<name>]")
print("Usage: exportfs <directory> [-d] [--rw] [--name=<name>]")
return
end
local px = fsproxy.new(tA[1], not tO.rw)
local name = tO.name or tA[1]
for l,m in pairs(px) do
m = not tO.d and m or nil
rpc.register("fs_"..name.."_"..l,m)
end
print(string.format("%s (%s)", name, (tO.rw and "rw") or "ro"))