mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_version: Make the command used to get OS version configurable
This commit is contained in:
parent
42d53ec2cf
commit
9b900ecc5f
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ if not module:get_option("hide_os_type") then
|
|||
if os.getenv("WINDIR") then
|
||||
version = "Windows";
|
||||
else
|
||||
local uname = io.popen("uname");
|
||||
local uname = io.popen(module:get_option("os_version_command") or "uname");
|
||||
if uname then
|
||||
version = uname:read("*a");
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue