Changeset

3420:9be46a3466ef

mod_version: Make the command used to get OS version configurable
author Kim Alvefur <zash@zash.se>
date Sun, 01 Aug 2010 15:56:52 +0200
parents 3419:79e08dc3fd37
children 3421:d3852a4d37e2
files plugins/mod_version.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_version.lua	Sat Jul 31 11:30:16 2010 +0100
+++ b/plugins/mod_version.lua	Sun Aug 01 15:56:52 2010 +0200
@@ -16,7 +16,7 @@
 	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