mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Fix some luacheck warnings
This commit is contained in:
parent
23470dd8de
commit
75a1867ca5
1 changed files with 5 additions and 4 deletions
|
@ -69,6 +69,7 @@ local modulemanager = require "core.modulemanager"
|
||||||
local prosodyctl = require "util.prosodyctl"
|
local prosodyctl = require "util.prosodyctl"
|
||||||
local socket = require "socket"
|
local socket = require "socket"
|
||||||
local dependencies = require "util.dependencies";
|
local dependencies = require "util.dependencies";
|
||||||
|
local lfs = dependencies.softreq "lfs";
|
||||||
|
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
@ -198,14 +199,15 @@ function commands.deluser(arg)
|
||||||
return 1;
|
return 1;
|
||||||
end
|
end
|
||||||
|
|
||||||
local function service_command_warning(command)
|
local function service_command_warning(service_command)
|
||||||
if prosody.installed and configmanager.get("*", "prosodyctl_service_warnings") ~= false then
|
if prosody.installed and configmanager.get("*", "prosodyctl_service_warnings") ~= false then
|
||||||
show_warning("WARNING: Use of prosodyctl start/stop/restart/reload is not recommended");
|
show_warning("WARNING: Use of prosodyctl start/stop/restart/reload is not recommended");
|
||||||
show_warning(" if Prosody is managed by an init system - use that directly instead.");
|
show_warning(" if Prosody is managed by an init system - use that directly instead.");
|
||||||
|
lfs = lfs or require
|
||||||
if lfs.attributes("/etc/systemd") then
|
if lfs.attributes("/etc/systemd") then
|
||||||
show_warning(" e.g. systemctl %s prosody", command);
|
show_warning(" e.g. systemctl %s prosody", service_command);
|
||||||
elseif lfs.attributes("/etc/init.d/prosody") then
|
elseif lfs.attributes("/etc/init.d/prosody") then
|
||||||
show_warning(" e.g. /etc/init.d/prosody %s", command);
|
show_warning(" e.g. /etc/init.d/prosody %s", service_command);
|
||||||
end
|
end
|
||||||
show_warning("");
|
show_warning("");
|
||||||
end
|
end
|
||||||
|
@ -512,7 +514,6 @@ function commands.unregister(arg)
|
||||||
end
|
end
|
||||||
|
|
||||||
local openssl;
|
local openssl;
|
||||||
local lfs;
|
|
||||||
|
|
||||||
local cert_commands = {};
|
local cert_commands = {};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue