aboutsummaryrefslogtreecommitdiff
path: root/init.d.BSD/moused
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-12-04 12:25:12 +0000
committerRoy Marples <roy@marples.name>2007-12-04 12:25:12 +0000
commitbb2b8f383feb1d1c7d919009f575a6fa0036587d (patch)
treeb890771df262bff15f3e8d86c982a5390c38a97d /init.d.BSD/moused
parent8cfb8f13338cf2ea7846a6bad15138683648cc4a (diff)
Allow moused to have configs per port
Diffstat (limited to 'init.d.BSD/moused')
-rw-r--r--init.d.BSD/moused18
1 files changed, 12 insertions, 6 deletions
diff --git a/init.d.BSD/moused b/init.d.BSD/moused
index 9534082b..08dff8f4 100644
--- a/init.d.BSD/moused
+++ b/init.d.BSD/moused
@@ -59,16 +59,22 @@ start() {
return 1
fi
+ local args=
+ eval args=\$moused_args_${moused_device##*/}
+ [ -z "${args}" ] && args=${moused_args}
+
start-stop-daemon --start --exec /usr/sbin/moused \
--pidfile "${pidfile}" \
- -- ${moused_args} -p "${moused_device}" -I "${pidfile}"
+ -- ${args} -p "${moused_device}" -I "${pidfile}"
local retval=$?
- local ttyv=
- for ttyv in /dev/ttyv*; do
- vidcontrol < "${ttyv}" -m on
- : $((retval+= $?))
- done
+ if [ ${retval} = 0 ]; then
+ local ttyv=
+ for ttyv in /dev/ttyv*; do
+ vidcontrol < "${ttyv}" -m on
+ : $((retval+= $?))
+ done
+ fi
eend ${retval} "Failed to start moused"
}