aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-03-17 16:23:07 +0100
committerKim Alvefur <zash@zash.se>2023-03-17 16:23:07 +0100
commitd47a7bb3bde921168e40a27cb2d0fc847c63167e (patch)
treeb05560972fc7a17a005df06aed1ca1c8e5086c66 /core/certmanager.lua
parent9c63ae60fdc89ced9434487d3f298576e86e42a2 (diff)
downloadprosody-d47a7bb3bde921168e40a27cb2d0fc847c63167e.tar.gz
prosody-d47a7bb3bde921168e40a27cb2d0fc847c63167e.zip
core: Prefix module imports with prosody namespace
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 0c71e448..fc2aaf12 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -7,13 +7,13 @@
--
local ssl = require "ssl";
-local configmanager = require "core.configmanager";
-local log = require "util.logger".init("certmanager");
+local configmanager = require "prosody.core.configmanager";
+local log = require "prosody.util.logger".init("certmanager");
local ssl_newcontext = ssl.newcontext;
-local new_config = require"net.server".tls_builder;
+local new_config = require"prosody.net.server".tls_builder;
local stat = require "lfs".attributes;
-local x509 = require "util.x509";
+local x509 = require "prosody.util.x509";
local lfs = require "lfs";
local tonumber, tostring = tonumber, tostring;
@@ -27,7 +27,7 @@ local next = next;
local pcall = pcall;
local prosody = prosody;
-local pathutil = require"util.paths";
+local pathutil = require"prosody.util.paths";
local resolve_path = pathutil.resolve_relative_path;
local config_path = prosody.paths.config or ".";