summaryrefslogtreecommitdiffstats
path: root/postgresql-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'postgresql-model.lua')
-rw-r--r--postgresql-model.lua12
1 files changed, 8 insertions, 4 deletions
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()