summaryrefslogtreecommitdiffstats
path: root/quagga-controller.lua
diff options
context:
space:
mode:
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