summaryrefslogtreecommitdiffstats
path: root/recipes-ti
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-ti')
-rw-r--r--recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh b/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh
index 97f870e8..7f0632a7 100644
--- a/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh
+++ b/recipes-ti/ipc/ti-ipc/tiipclad-daemon.sh
@@ -1,14 +1,15 @@
1#! /bin/sh 1#! /bin/sh
2 2
3tiipclad_daemon=/usr/bin/__LAD_DAEMON__ 3tiipclad_daemon=/usr/bin/__LAD_DAEMON__
4tiipclad_params=lad.txt 4tiipclad_params="-l lad.txt"
5 5
6test -x "$tiipclad_daemon" || exit 0 6test -x "$tiipclad_daemon" || exit 0
7 7
8case "$1" in 8case "$1" in
9 start) 9 start)
10 echo -n "Starting tiipclad daemon" 10 echo -n "Starting tiipclad daemon"
11 start-stop-daemon --start --quiet --exec $tiipclad_daemon $tiipclad_params 11 start-stop-daemon --start --quiet \
12 --exec $tiipclad_daemon -- $tiipclad_params
12 echo "." 13 echo "."
13 ;; 14 ;;
14 stop) 15 stop)