Merge pull request #39 from klaernie/fix-df

ask df for a specific filesystem
This commit is contained in:
Luke Bonham 2014-04-11 09:29:10 +02:00
commit da2c1cb778
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ local function worker(args)
fs_info = {}
fs_now = {}
local f = io.popen("LC_ALL=C df -kP")
local f = io.popen("LC_ALL=C df -kP " .. partition)
for line in f:lines() do -- Match: (size) (used)(avail)(use%) (mount)
local s = string.match(line, "^.-[%s]([%d]+)")