diff options
author | Mike Mason <ms13sp@gmail.com> | 2007-11-14 20:10:42 +0000 |
---|---|---|
committer | Mike Mason <ms13sp@gmail.com> | 2007-11-14 20:10:42 +0000 |
commit | 0d14e4cb5636a57c674a7076ab1605802cea85a2 (patch) | |
tree | 3b7974beb6b1c2001a8c9f0ea0b6c9dd6299ac17 /lib/service_model.lua | |
parent | b4fcb1304664f42f344a724468a3fa6abee3ea4c (diff) | |
download | acf-core-0d14e4cb5636a57c674a7076ab1605802cea85a2.tar.bz2 acf-core-0d14e4cb5636a57c674a7076ab1605802cea85a2.tar.xz |
Changed to use posix instead of lfs
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@302 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'lib/service_model.lua')
-rw-r--r-- | lib/service_model.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/service_model.lua b/lib/service_model.lua index c619d61..3f81794 100644 --- a/lib/service_model.lua +++ b/lib/service_model.lua @@ -5,7 +5,7 @@ function create_service_model(cfglist, loglist, servlist, notepath) local me = {} local function get_any_pid(pname) - for e in lfs.dir("/proc") do + for e in posix.files("/proc") do if e == string.match(e, "^%d*$") then for line in io.lines("/proc/" .. e .. "/status") do tag, val = string.match(line, "^([^:]*):%s*(%S*)$"); |