summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pingu-model.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/pingu-model.lua b/pingu-model.lua
index 15ed34d..d163fc3 100644
--- a/pingu-model.lua
+++ b/pingu-model.lua
@@ -18,11 +18,11 @@ local path = "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin
-- ################################################################################
-- PUBLIC FUNCTIONS
-function get_startstop(clientdata)
+function get_startstop(self, clientdata)
return modelfunctions.get_startstop(processname)
end
-function startstop_service(startstop, action)
+function startstop_service(self, startstop, action)
return modelfunctions.startstop_service(startstop, action)
end
@@ -34,6 +34,6 @@ function get_filedetails()
return modelfunctions.getfiledetails(configfile)
end
-function update_filedetails(filedetails)
- return modelfunctions.setfiledetails(filedetails, {configfile})
+function update_filedetails(self, filedetails)
+ return modelfunctions.setfiledetails(self, filedetails, {configfile})
end