1afce00360
in keeping the scripts under rc.d in sync with us. So, begin removal of NetBSD specific stuff (which made our scripts more complicated than necessary), starting with the NetBSD KEYWORD.
46 lines
684 B
Bash
46 lines
684 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: moused,v 1.1 2001/10/29 23:25:01 augustss Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: moused
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: FreeBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=moused
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
|
|
case ${OSTYPE} in
|
|
FreeBSD)
|
|
start_cmd="moused_start"
|
|
;;
|
|
esac
|
|
|
|
moused_start()
|
|
{
|
|
echo -n 'Starting moused:'
|
|
/usr/sbin/moused ${moused_flags} -p ${moused_port} -t ${moused_type}
|
|
|
|
_mousechar_arg=
|
|
case ${mousechar_start} in
|
|
[Nn][Oo] | '')
|
|
;;
|
|
*)
|
|
echo -n ' mousechar_start'
|
|
_mousechar_arg="-M ${mousechar_start}"
|
|
;;
|
|
esac
|
|
|
|
for ttyv in /dev/ttyv* ; do
|
|
vidcontrol < ${ttyv} ${_mousechar_arg} -m on
|
|
done
|
|
echo '.'
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|