summaryrefslogtreecommitdiffstats
path: root/iptables-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-03-23 19:40:24 +0000
committerTed Trask <ttrask01@yahoo.com>2009-03-23 19:40:24 +0000
commitfa8ecfa1d3f70eafec0a7bbbd4020124520a64ee (patch)
treeb8c22c678f7fbf554db059eaf4ef55e2eb1d3dc5 /iptables-model.lua
parent2d8c9daf184d648b6e6ebfb49d29f1fd561c7f4d (diff)
downloadacf-iptables-fa8ecfa1d3f70eafec0a7bbbd4020124520a64ee.tar.bz2
acf-iptables-fa8ecfa1d3f70eafec0a7bbbd4020124520a64ee.tar.xz
Changed the way startstop works in core to add a list of allowed actions. Modified all ACFs that don't use the standard functions to work with new library method.
Diffstat (limited to 'iptables-model.lua')
-rw-r--r--iptables-model.lua16
1 files changed, 1 insertions, 15 deletions
diff --git a/iptables-model.lua b/iptables-model.lua
index 0447e41..d893f60 100644
--- a/iptables-model.lua
+++ b/iptables-model.lua
@@ -555,20 +555,6 @@ function updaterulesfile(filedetails)
return modelfunctions.setfiledetails(filedetails, {rulesfile})
end
--- local implementation to add save, reload, and panic actions
function startstop_service(action)
- local cmdresult = cfe({ label="Start/Stop result" })
-
- if (string.lower(action) == "start") or (string.lower(action) == "stop") or (string.lower(action) == "restart") or (string.lower(action) == "save") or (string.lower(action) == "reload") or (string.lower(action) == "panic") then
- local file = io.popen( "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin /etc/init.d/" ..
- servicename .. " " .. string.lower(action) .. " 2>&1" )
- if file ~= nil then
- cmdresult.value = file:read( "*a" )
- file:close()
- end
- posix.sleep(2) -- Wait for the process to start|stop
- else
- cmdresult.errtxt = "Unknown command!"
- end
- return cmdresult
+ return modelfunctions.startstop_service(servicename, action, {"start", "stop", "restart", "save", "reload", "panic"})
end