Software /
code /
prosody
Diff
plugins/mod_version.lua @ 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 |
parent | 2923:b7049746bd29 |
child | 3421:d3852a4d37e2 |
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