1
1
зеркало из https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-27 14:45:18 -04:00

added a filesyste manager program, for auto (un)mounting of filesystems

Этот коммит содержится в:
XeonSquared 2019-08-01 22:41:43 +10:00
родитель e351683a88
Коммит 0aba709fb1

11
service/fsmanager.lua Обычный файл
Просмотреть файл

@ -0,0 +1,11 @@
while true do
local tE = {coroutine.yield()}
if tE[1] == "component_added" and tE[3] == "filesystem" then
local w, doesExist = pcall(fs.exists,"/"..tE[2]:sub(1,3))
if not w or not doesExist then
fs.mounts[tE[2]:sub(1,3)] = component.proxy(tE[2])
end
elseif tE[1] == "component_removed" and tE[3] == "filesystem" then
fs.mounts[tE[2]:sub(1,3)] = nil
end
end