openrc/init.d/moused.in

63 lines
1.3 KiB
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
2007-11-20 20:14:43 +05:30
mouse=${RC_SVCNAME##*.}
2009-04-27 13:21:18 +05:30
if [ -n "$mouse" -a "$mouse" != "moused" ]; then
moused_device=/dev/"$mouse"
pidfile=/var/run/moused-"$mouse".pid
2007-11-20 20:14:43 +05:30
else
pidfile=/var/run/moused.pid
fi
name="Console Mouse Daemon"
2009-04-27 13:21:18 +05:30
[ -n "$moused_device" ] && name="$name ($moused_device)"
2007-11-20 20:14:43 +05:30
depend()
{
2007-11-20 20:14:43 +05:30
need localmount
after bootmisc
keyword -jail -prefix
2007-11-20 20:14:43 +05:30
}
start()
{
2009-04-27 13:21:18 +05:30
ebegin "Starting $name"
2007-11-20 20:14:43 +05:30
2009-04-27 13:21:18 +05:30
if [ -z "$moused_device" ]; then
2007-11-20 20:14:43 +05:30
local dev=
2007-11-28 21:15:03 +05:30
for dev in /dev/psm[0-9]* /dev/ums[0-9]*; do
2009-04-27 13:21:18 +05:30
[ -c "$dev" ] || continue
[ -e /var/run/moused-"${dev##*/}".pid ] && continue
2009-04-27 13:21:18 +05:30
moused_device=$dev
2007-11-20 20:14:43 +05:30
eindent
2009-04-27 13:21:18 +05:30
einfo "Using mouse on $moused_device"
2007-11-20 20:14:43 +05:30
eoutdent
break
done
fi
2009-04-27 13:21:18 +05:30
if [ -z "$moused_device" ]; then
2007-11-20 20:14:43 +05:30
eend 1 "No mouse device found"
return 1
fi
2007-12-04 17:55:12 +05:30
local args=
eval args=\$moused_args_${moused_device##*/}
2009-04-27 13:21:18 +05:30
[ -z "$args" ] && args=$moused_args
2007-12-04 17:55:12 +05:30
2007-11-20 20:14:43 +05:30
start-stop-daemon --start --exec /usr/sbin/moused \
2009-04-27 13:21:18 +05:30
--pidfile "$pidfile" \
-- $args -p "$moused_device" -I "$pidfile"
2007-11-20 20:14:43 +05:30
local retval=$?
2009-04-27 13:21:18 +05:30
if [ $retval = 0 ]; then
2007-12-04 17:55:12 +05:30
local ttyv=
for ttyv in /dev/ttyv*; do
2009-04-27 13:21:18 +05:30
vidcontrol < "$ttyv" -m on
2007-12-04 17:55:12 +05:30
: $((retval+= $?))
done
fi
2007-11-20 20:14:43 +05:30
2009-04-27 13:21:18 +05:30
eend $retval "Failed to start moused"
2007-11-20 20:14:43 +05:30
}