summaryrefslogtreecommitdiffstats
path: root/ospf-controller.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ospf-controller.lua')
-rwxr-xr-xospf-controller.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/ospf-controller.lua b/ospf-controller.lua
new file mode 100755
index 0000000..23b8fe3
--- /dev/null
+++ b/ospf-controller.lua
@@ -0,0 +1,23 @@
+module(..., package.seeall)
+
+-- Load libraries
+require("controllerfunctions")
+
+default_action = "status"
+
+function status(self)
+ return self.model.getstatus()
+end
+
+function details(self)
+ return self.model.getdetails()
+end
+
+function startstop(self)
+ return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata)
+end
+
+function expert(self)
+ return controllerfunctions.handle_form(self, self.model.getconfigfile, self.model.setconfigfile, self.clientdata, "Save", "Edit OSPF Config", "OSPF Configuration Saved")
+end
+