summaryrefslogtreecommitdiffstats
path: root/lib/modelfunctions.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-09-26 18:16:31 +0000
committerTed Trask <ttrask01@yahoo.com>2008-09-26 18:16:31 +0000
commiteb012794028e9f5670feb03718c03ad699e8d935 (patch)
tree4a73c5a4cb7ef7b444236cca06ef04b651bb8996 /lib/modelfunctions.lua
parente78de1270cce57dbe3abeab1857084a4de613cdb (diff)
downloadacf-core-eb012794028e9f5670feb03718c03ad699e8d935.tar.bz2
acf-core-eb012794028e9f5670feb03718c03ad699e8d935.tar.xz
Cleanup of some libs.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1533 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'lib/modelfunctions.lua')
-rw-r--r--lib/modelfunctions.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/modelfunctions.lua b/lib/modelfunctions.lua
index 9dd1d6b..ef0513c 100644
--- a/lib/modelfunctions.lua
+++ b/lib/modelfunctions.lua
@@ -17,7 +17,7 @@ end
function startstop_service(processname, action)
-- action is validated in daemoncontrol
- local cmdresult,cmdmessage,cmderror,cmdaction = processinfo.daemoncontrol(processname, action)
+ local cmdmessage,cmderror = processinfo.daemoncontrol(processname, action)
return cfe({ value=cmdmessage or "", errtxt=cmderror, label="Start/Stop result" })
end