mirror of
git://git.yoctoproject.org/poky
synced 2026-08-13 03:54:31 +00:00
tcf-agent: fix the init script: remove the "-s SSL:" option
[BUGFIX#158] tcf-agent launched with misleading options In the commit 90e80aafbd244b00c2ced995feb73af4a739279b, with the image built by poky-image-sdk(MACHINE=qemux86), tcf-agent is launched automatically with the option "-s SSL:" in script /etc/init.d/tcf-agent, which is misleading to users. This option tells the agent to use SSL instead of TCP for communication. Because tcf-agent is not built with the SSL option enabled (libssl is not installed in the target), the agent will fall back to TCP. This could be misleading to users, so we may as well remove it. Thanks Lianhao Lu for reporting the bug and clarifying it. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
This commit is contained in:
parent
cdece36231
commit
8362a98b8e
@ -35,7 +35,7 @@
|
||||
+case "$1" in
|
||||
+ start)
|
||||
+ echo -n "Starting $DAEMON_NAME: "
|
||||
+ $DAEMON_PATH -d -L- -l0 -s SSL:
|
||||
+ $DAEMON_PATH -d -L- -l0
|
||||
+ RETVAL=$?
|
||||
+ if [ $RETVAL -eq 0 ] ; then
|
||||
+ echo "OK"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user