openrc/init.d/moused.in

70 lines
1.6 KiB
Plaintext
Raw Normal View History

#!@SBINDIR@/openrc-run
# Copyright (c) 2007-2015 The OpenRC Authors.
# See the Authors file at the top-level directory of this distribution and
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
#
# This file is part of OpenRC. It is subject to the license terms in
# the LICENSE file found in the top-level directory of this
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
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()
{
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
eend 1 "No mouse device found"
2007-11-20 20:14:43 +05:30
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
: $(( retval += $? ))
2007-12-04 17:55:12 +05:30
done
fi
2009-04-27 13:21:18 +05:30
eend $retval "Failed to start moused"
2007-11-20 20:14:43 +05:30
}