diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-05 21:32:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-05 21:32:34 +0200 |
commit | 7112f319c35e19bbc75579c102f2bc37b4d911bb (patch) | |
tree | 2af20a08d372142ea37aa168e8bb684b8566e13a /tools/migration/migrator.cfg.lua | |
parent | 696da1f571e723216a1e6b74d793eed4fe98dbd8 (diff) | |
download | prosody-7112f319c35e19bbc75579c102f2bc37b4d911bb.tar.gz prosody-7112f319c35e19bbc75579c102f2bc37b4d911bb.zip |
migrator: Rewrite to use storage modules
This allows migrating to and from any storage module that supports the
right methods. Based on experimental mod_migrate work.
Diffstat (limited to 'tools/migration/migrator.cfg.lua')
-rw-r--r-- | tools/migration/migrator.cfg.lua | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/tools/migration/migrator.cfg.lua b/tools/migration/migrator.cfg.lua index fa37f2a3..c26fa869 100644 --- a/tools/migration/migrator.cfg.lua +++ b/tools/migration/migrator.cfg.lua @@ -1,12 +1,38 @@ local data_path = "../../data"; +local vhost = { + "accounts", + "account_details", + "roster", + "vcard", + "private", + "blocklist", + "privacy", + "archive-archive", + "offline-archive", + "pubsub_nodes", + -- "pubsub_*-archive", + "pep", + -- "pep_*-archive", +} +local muc = { + "persistent", + "config", + "state", + "muc_log-archive", +}; + input { - type = "prosody_files"; + hosts = { + ["example.com"] = vhost; + ["conference.example.com"] = muc; + }; + type = "internal"; path = data_path; } output { - type = "prosody_sql"; + type = "sql"; driver = "SQLite3"; database = data_path.."/prosody.sqlite"; } @@ -14,11 +40,11 @@ output { --[[ input { - type = "prosody_files"; + type = "internal"; path = data_path; } output { - type = "prosody_sql"; + type = "sql"; driver = "SQLite3"; database = data_path.."/prosody.sqlite"; } |