mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_version: Handle access denied from uname()
Discovered while experimenting with a stricter SystemCallFilter setting See man:systemd.exec(5)
This commit is contained in:
parent
5550be6381
commit
0987a0113d
1 changed files with 6 additions and 1 deletions
|
@ -22,7 +22,12 @@ if not module:get_option_boolean("hide_os_type") then
|
|||
local os_version_command = module:get_option_string("os_version_command");
|
||||
local ok, pposix = pcall(require, "prosody.util.pposix");
|
||||
if not os_version_command and (ok and pposix and pposix.uname) then
|
||||
platform = pposix.uname().sysname;
|
||||
local ok, uname = pposix.uname();
|
||||
if not ok then
|
||||
module:log("debug", "Could not retrieve OS name: %s", uname);
|
||||
else
|
||||
platform = uname.sysname;
|
||||
end
|
||||
end
|
||||
if not platform then
|
||||
local uname = io.popen(os_version_command or "uname");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue