Software /
code /
prosody
Comparison
tools/migration/migrator.cfg.lua @ 13295:b788307ca06a
migrator: Update default config template with new stores
* mod_authz_internal adds account_roles
* mod_cron has its state
* mod_smacks also has some non-critical state
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 01 Nov 2023 19:02:02 +0100 |
parent | 12168:33e856c65033 |
child | 13296:803a4ef6244d |
comparison
equal
deleted
inserted
replaced
13294:4a05fbda927f | 13295:b788307ca06a |
---|---|
1 local data_path = "../../data"; | 1 local data_path = "../../data"; |
2 | 2 |
3 local vhost = { | 3 local vhost = { |
4 "accounts", | 4 "accounts", |
5 "account_details", | 5 "account_details", |
6 "account_roles", | |
6 "roster", | 7 "roster", |
7 "vcard", | 8 "vcard", |
8 "private", | 9 "private", |
9 "blocklist", | 10 "blocklist", |
10 "privacy", | 11 "privacy", |
11 "archive-archive", | 12 "archive-archive", |
12 "offline-archive", | 13 "offline-archive", |
13 "pubsub_nodes-pubsub", | 14 "pubsub_nodes-pubsub", |
14 "pep-pubsub", | 15 "pep-pubsub", |
16 "cron", | |
17 "smacks_h", | |
15 } | 18 } |
16 local muc = { | 19 local muc = { |
17 "persistent", | 20 "persistent", |
18 "config", | 21 "config", |
19 "state", | 22 "state", |
20 "muc_log-archive", | 23 "muc_log-archive", |
24 "cron", | |
21 }; | 25 }; |
22 | 26 |
23 input { | 27 input { |
24 hosts = { | 28 hosts = { |
25 ["example.com"] = vhost; | 29 ["example.com"] = vhost; |