From 4943770cd49f3fae629b91913c54cdecad0ae398 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Tue, 26 May 2009 16:03:44 +0000 Subject: Update for alpine 1.9 openrc and minor changes for RAM disk and modules. --- health-model.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'health-model.lua') diff --git a/health-model.lua b/health-model.lua index 52b4fa9..7f38f83 100644 --- a/health-model.lua +++ b/health-model.lua @@ -55,11 +55,11 @@ get_storage = function (self) local name = string.match(line, "^(/dev/fd%d+)") storage.floppy.value[name] = cfe({ value=string.match(disk, "[^\n]*\n")..line, label="Floppy Capacity" }) storage.floppy.value[name].used = string.match(line, name.."%s*%S*%s*%S*%s*%S*%s*(%S*)%%") - elseif string.match(line, "^/dev/none") then + elseif string.match(line, "^/dev/none") or string.match(line, "^tmpfs") then if not storage.ramdisk then storage.ramdisk = cfe({ type="group", value={}, label="RAM disks" }) end - local name = "/dev/none" + local name = string.match(line, "^%S+") storage.ramdisk.value[name] = cfe({ value=string.match(disk, "[^\n]*\n")..line, label="RAM Disk Capacity" }) storage.ramdisk.value[name].used = string.match(line, name.."%s*%S*%s*%S*%s*%S*%s*(%S*)%%") elseif string.match(line, "^/dev/[hs]d%a%d+") then -- cgit v1.2.3