[fsync] Check whether API_PATH actually exists and contains any symlinks. Thanks Mario!
This commit is contained in:
parent
068040a4b4
commit
69d7922dab
|
@ -318,10 +318,12 @@ end
|
||||||
--- Remove all /sensor/xyz endpoint mappings to the cgi script.
|
--- Remove all /sensor/xyz endpoint mappings to the cgi script.
|
||||||
-- @return none
|
-- @return none
|
||||||
local function remove_symlinks()
|
local function remove_symlinks()
|
||||||
|
if nixio.fs.dir(API_PATH) then
|
||||||
for symlink in nixio.fs.dir(API_PATH) do
|
for symlink in nixio.fs.dir(API_PATH) do
|
||||||
nixio.fs.unlink(API_PATH .. symlink)
|
nixio.fs.unlink(API_PATH .. symlink)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
--- Map /sensor/xyz endpoints to the cgi script.
|
--- Map /sensor/xyz endpoints to the cgi script.
|
||||||
-- @return none
|
-- @return none
|
||||||
|
|
Loading…
Reference in New Issue