diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-27 13:11:03 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-27 13:11:03 +0100 |
commit | 7eb1e593d4aa61fbe7b92bf0ec248897c9a794e6 (patch) | |
tree | 9b879f442fc3bbd26b745a241277a8fa7a03f2bf | |
parent | 37ba3a26425f280050db86f08607df68cc3001bb (diff) | |
download | prosody-7eb1e593d4aa61fbe7b92bf0ec248897c9a794e6.tar.gz prosody-7eb1e593d4aa61fbe7b92bf0ec248897c9a794e6.zip |
util.prosodyctl: Initialize storagemanager on the host before initializing usermanager. This fixes brokenness when the auth provider opens the store on load (as they all do since eeea0eb2602a) (thanks nulani)
-rw-r--r-- | util/prosodyctl.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/prosodyctl.lua b/util/prosodyctl.lua index 1ab1d0bb..b80a69f2 100644 --- a/util/prosodyctl.lua +++ b/util/prosodyctl.lua @@ -140,11 +140,12 @@ function adduser(params) if not host_session then return false, "no-such-host"; end + + storagemanager.initialize_host(host); local provider = host_session.users; if not(provider) or provider.name == "null" then usermanager.initialize_host(host); end - storagemanager.initialize_host(host); local ok, errmsg = usermanager.create_user(user, password, host); if not ok then @@ -155,11 +156,12 @@ end function user_exists(params) local user, host, password = nodeprep(params.user), nameprep(params.host), params.password; + + storagemanager.initialize_host(host); local provider = prosody.hosts[host].users; if not(provider) or provider.name == "null" then usermanager.initialize_host(host); end - storagemanager.initialize_host(host); return usermanager.user_exists(user, host); end |