# HG changeset patch # User Kim Alvefur # Date 1491262311 -7200 # Node ID 6a725b242804e6a0543a9bbf7782270d35051cce # Parent 1b35a562528d029ad661ae35c0dd8f7cd51648f8 mod_storage_none: Add allways empty archive storage diff -r 1b35a562528d -r 6a725b242804 plugins/mod_storage_none.lua --- a/plugins/mod_storage_none.lua Tue Apr 04 01:30:00 2017 +0200 +++ b/plugins/mod_storage_none.lua Tue Apr 04 01:31:51 2017 +0200 @@ -4,7 +4,7 @@ local driver_mt = { __index = driver }; function driver:open(store, typ) - if typ and typ ~= "keyval" then + if typ and typ ~= "keyval" and typ ~= "archive" then return nil, "unsupported-store"; end return setmetatable({ store = store, type = typ }, driver_mt); @@ -25,4 +25,12 @@ return true; end +function driver:append() + return nil, "Storage disabled"; +end + +function driver:find() + return function () end, 0; +end + module:provides("storage", driver);