From 493d9b8bf842a8b7e781f1672d4792fb84c79b16 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 25 Sep 2008 19:12:54 +0000 Subject: Moved procps and daemoncontrol functionality into processinfo.lua and deleted procps.lua and daemoncontrol.lua. This saves space on the server. git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1519 ab2d0c66-481e-0410-8bed-d214d4d58bed --- lib/daemoncontrol.lua | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 lib/daemoncontrol.lua (limited to 'lib/daemoncontrol.lua') diff --git a/lib/daemoncontrol.lua b/lib/daemoncontrol.lua deleted file mode 100644 index db9423c..0000000 --- a/lib/daemoncontrol.lua +++ /dev/null @@ -1,18 +0,0 @@ -module (..., package.seeall) -require("posix") - -function daemoncontrol (process, action) - local cmdmessage = "" - if (string.lower(action) == "start") or (string.lower(action) == "stop") or (string.lower(action) == "restart") then - local file = io.popen( "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin /etc/init.d/" .. - process .. " " .. string.lower(action) .. " 2>&1" ) - if file ~= nil then - cmdmessage = file:read( "*a" ) - file:close() - end - else - return false,nil,"Unknown command!",action - end - posix.sleep(2) -- Wait for the process to start|stop - return true,cmdmessage,nil,action -end -- cgit v1.2.3