From 3834caa904de9107899708c1209ff5f530fc8d93 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Thu, 12 Nov 2009 01:43:00 +0100 Subject: hddtemp: fixed support for multiple devices --- hddtemp.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hddtemp.lua b/hddtemp.lua index a2557fa..366f40b 100644 --- a/hddtemp.lua +++ b/hddtemp.lua @@ -7,7 +7,7 @@ local tonumber = tonumber local io = { popen = io.popen } local setmetatable = setmetatable -local string = { match = string.match } +local string = { gmatch = string.gmatch } -- }}} @@ -25,9 +25,8 @@ local function worker(format, port) local hdd_temp = {} for line in f:lines() do - local disk, temp = string.match(line, "|([%/%a%d]+)|.*|([%d]+)|[CF]+|") - - if disk ~= nil and temp ~= nil then + for disk, temp in string.gmatch(line, "|([%/%a%d]+)|.-|([%d]+)|[CF]+|") + do hdd_temp["{"..disk.."}"] = tonumber(temp) end end -- cgit v1.2.3