summaryrefslogtreecommitdiff
path: root/package/bkeymaps/files/kbd.init
blob: 4aec7dffef4bf3cd28e84a237478f94b2d2cfcf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#PKG bkeymaps
#INIT 6
. /etc/rc.conf

case $1 in
autostop) ;;
autostart)
	test x"${kbd:-NO}" = x"NO" && exit 0
	exec sh $0 start
	;;
start)
	[ -f /usr/share/keymaps/keymap.bmap ] || exit
	loadkmap < /usr/share/keymaps/keymap.bmap
	;;
stop)
	;;
restart)
	sh $0 stop
	sh $0 start
	;;
*)
	echo "Usage: $0 {start | stop | restart}"
	;;
esac
exit $?