From 19a6c8d65bf675acbb0dfa44932c5aea5dab1ed6 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 23 Feb 2012 14:12:10 +0000 Subject: Change startstop to use the latest method from acf-core-0.15 --- postgresql-controller.lua | 2 +- postgresql-model.lua | 12 ++++++++---- postgresql-startstop-html.lsp | 1 - 3 files changed, 9 insertions(+), 6 deletions(-) delete mode 120000 postgresql-startstop-html.lsp diff --git a/postgresql-controller.lua b/postgresql-controller.lua index e7c6d13..83f2a05 100644 --- a/postgresql-controller.lua +++ b/postgresql-controller.lua @@ -15,7 +15,7 @@ function status(self) end function startstop(self) - return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata) + return controllerfunctions.handle_form(self, self.model.get_startstop, self.model.startstop_service, self.clientdata) end function details(self) diff --git a/postgresql-model.lua b/postgresql-model.lua index dc73d90..690802d 100644 --- a/postgresql-model.lua +++ b/postgresql-model.lua @@ -2,8 +2,8 @@ module(..., package.seeall) -- Load libraries require("modelfunctions") -require("fs") -require("format") +fs = require("acf.fs") +format = require("acf.format") -- Set variables local confdfile = "/etc/conf.d/postgresql" @@ -34,8 +34,12 @@ end -- ################################################################################ -- PUBLIC FUNCTIONS -function startstop_service(action) - return modelfunctions.startstop_service(processname, action, {"Setup", "Start", "Stop", "Restart"}) +function get_startstop(clientdata) + return modelfunctions.get_startstop(processname) +end + +function startstop_service(startstop, action) + return modelfunctions.startstop_service(startstop, action) end function getstatus() diff --git a/postgresql-startstop-html.lsp b/postgresql-startstop-html.lsp deleted file mode 120000 index 0ea2627..0000000 --- a/postgresql-startstop-html.lsp +++ /dev/null @@ -1 +0,0 @@ -../startstop-html.lsp \ No newline at end of file -- cgit v1.2.3