mod_version: Make the command used to get OS version configurable

This commit is contained in:
Kim Alvefur 2010-08-01 15:56:52 +02:00
parent 42d53ec2cf
commit 9b900ecc5f

View file

@ -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