summaryrefslogtreecommitdiffstats
path: root/quagga-controller.lua
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2008-09-04 15:13:00 +0000
committerMika Havela <mika.havela@gmail.com>2008-09-04 15:13:00 +0000
commit2fb09eb0dee06e74f94b6def6493066214c5f4a9 (patch)
tree82dd74c9c2891a13efd278e3b40c76a80bb9960b /quagga-controller.lua
parentbb571803d2cce176d5aaab9659733c852bf85b1b (diff)
downloadacf-quagga-2fb09eb0dee06e74f94b6def6493066214c5f4a9.tar.bz2
acf-quagga-2fb09eb0dee06e74f94b6def6493066214c5f4a9.tar.xz
Split Bgp and Zebra into separate controllers.
Earlier there was no chance to start/stop zebra (only bgp) and the whole package was a strange mix of bgp and zebra. Now these processes has own Menuitems and are controlled separately (they both exist in acf-quagga though). git-svn-id: svn://svn.alpinelinux.org/acf/quagga/trunk@1447 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'quagga-controller.lua')
-rw-r--r--quagga-controller.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/quagga-controller.lua b/quagga-controller.lua
deleted file mode 100644
index e2bb4b3..0000000
--- a/quagga-controller.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-module(..., package.seeall)
-
--- Load libraries
-require("controllerfunctions")
-
-default_action = "status"
-
-function status(self)
- return self.model.getstatus()
-end
-
-function startstop(self)
- return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.model.getstatus, self.clientdata)
-end
-
-function expert(self)
- return controllerfunctions.handle_form(self, self.model.getconfigfile, self.model.setconfigfile, self.clientdata, "Save", "Edit Quagga Config", "Quagga Configuration Saved")
-end
-
-function bgpstatus(self)
- return self.model.getbgpstatus()
-end
-
-function bgpstartstop(self)
- return controllerfunctions.handle_startstop(self, self.model.bgpstartstop_service, self.model.getbgpstatus, self.clientdata)
-end
-
-function bgpexpert(self)
- return controllerfunctions.handle_form(self, self.model.getbgpconfigfile, self.model.setbgpconfigfile, self.clientdata, "Save", "Edit BGP Config", "BGP Configuration Saved")
-end