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-model.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'postgresql-model.lua') 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() -- cgit v1.2.3