[tuxdroid-svn] r4965 - in software_suite_v3/software/plugin/plugin-system/trunk/plugin-system: exe
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-07-01 10:58:06
|
Author: jerome
Date: 2009-07-01 12:57:09 +0200 (Wed, 01 Jul 2009)
New Revision: 4965
Modified:
software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py
software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml
Log:
* Changed the name of 'daemon' command.
Modified: software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py
===================================================================
--- software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py 2009-07-01 10:56:26 UTC (rev 4964)
+++ software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py 2009-07-01 10:57:09 UTC (rev 4965)
@@ -211,8 +211,10 @@
This method should be used to dispatch commands.
"""
if self.getCommand() == "run":
+ self.throwTrace("run command retrieved")
self.run(False)
- elif self.getCommand() == "runDaemon":
+ elif self.getCommand() == "daemonStart":
+ self.throwTrace("runDaemon command retrieved")
self.runDaemon()
Modified: software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml
===================================================================
--- software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml 2009-07-01 10:56:26 UTC (rev 4964)
+++ software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml 2009-07-01 10:57:09 UTC (rev 4965)
@@ -49,7 +49,7 @@
name="run"
description="Give system informations." />
<command
- name="runDaemon"
+ name="daemonStart"
description="Start system daemon"
daemon="true"
notifier="true"
@@ -59,7 +59,7 @@
<task
name="Activation"
description="Activate the system CPU and Memory threshold notifier"
- command="runDaemon"
+ command="daemonStart"
type="once delayed"
activated="false"
|