daemon: lua-related test config updates.
authorKrisztian Litkey <krisztian.litkey@intel.com>
Wed, 7 Nov 2012 20:48:11 +0000 (22:48 +0200)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Wed, 7 Nov 2012 20:53:50 +0000 (22:53 +0200)
src/daemon/murphy-lua.conf
src/daemon/murphy.conf
src/daemon/murphy.lua

index c3260c1..112fbcb 100644 (file)
@@ -1 +1,3 @@
+set resolver-ruleset '/u/src/work/murphy/src/resolver/test-input'
+
 load-plugin lua config="/u/src/work/murphy/src/daemon/murphy.lua"
index 220ab85..3f9752f 100644 (file)
@@ -1,3 +1,5 @@
+set resolver-ruleset '/u/src/work/murphy/src/resolver/test-input'
+
 # try-load-plugin console
 try-load-plugin console        # address="tcp4:127.0.0.1:3000"
                         # address="udp4:127.0.0.1:3000"
@@ -47,5 +49,3 @@ if plugin-exists domain-control
 else
     info "No domain-control plugin found..."
 end
-
-#set resolver-ruleset '/u/src/work/murphy/src/resolver/test-input'
index c78912f..7d2545b 100644 (file)
@@ -25,9 +25,23 @@ m:try_load_plugin('glib')
 -- try loading the signalling plugin
 m:try_load_plugin('signalling', { address = 'internal:signalling' })
 
+-- load the native resource plugin
+if m:plugin_exists('resource-native') then
+    m:load_plugin('resource-native')
+else
+    m:info("No native resource plugin found...")
+end
+
 -- load the domain control plugin if it exists
 if m:plugin_exists('domain-control') then
     m:load_plugin('domain-control')
 else
     m:info("No domain-control plugin found...")
 end
+
+mdb.select {
+           name = "speed",
+           table = "audio_playback_owner",
+           columns = {"application_class"},
+           condition = "key = 'driver'"
+}