diff options
Diffstat (limited to 'health-controller.lua')
-rw-r--r-- | health-controller.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/health-controller.lua b/health-controller.lua index fb7d4fb..72838e1 100644 --- a/health-controller.lua +++ b/health-controller.lua @@ -5,21 +5,21 @@ default_action = "system" -- Public methods system = function (self ) - return ({system = self.model:get_system(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) + return ({system = self.model:get_system(), url = self.conf.script .. self.conf.prefix .. self.conf.controller} ) end storage = function (self ) - return ({storage = self.model:get_storage(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) + return ({storage = self.model:get_storage(), url = self.conf.script .. self.conf.prefix .. self.conf.controller} ) end network = function (self ) - return ({network = self.model:get_network(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) + return ({network = self.model:get_network(), url = self.conf.script .. self.conf.prefix .. self.conf.controller} ) end modules = function (self ) - return ({modules = self.model:get_modules(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) + return ({modules = self.model:get_modules(), url = self.conf.script .. self.conf.prefix .. self.conf.controller} ) end proc = function (self ) - return ({proc = self.model:get_proc(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) + return ({proc = self.model:get_proc(), url = self.conf.script .. self.conf.prefix .. self.conf.controller} ) end |