From 84e5ffedffdc961706355fd87b674cbad8460955 Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Mon, 25 Mar 2013 22:49:06 +0200 Subject: [PATCH] daemon: load a domain-control plugin for webruntimes in the sample config. --- src/daemon/murphy.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/daemon/murphy.lua b/src/daemon/murphy.lua index 9e897c4..bd91c0e 100644 --- a/src/daemon/murphy.lua +++ b/src/daemon/murphy.lua @@ -81,6 +81,18 @@ else m:info("No domain-control plugin found...") end +-- load the domain control plugin if it exists +if m:plugin_exists('domain-control') then + m:load_plugin('domain-control', 'wrt-export', { + external_address = '', + internal_address = '', + wrt_address = "wsck:127.0.0.1:5000/murphy", + httpdir = "src/plugins/domain-control" + }) +else + m:info("No domain-control plugin found...") +end + -- define application classes application_class { name="interrupt", priority=99, modal=true , share=false, order="fifo" } -- 2.7.4