Initial commit of KAM fork of ucw-cs (comes from 2000, by Martin Mares)
[ucwcs-console.git] / debian / init
blob0c816929b917534445603961632e31741aa88579
1 #!/bin/sh
3 # Configure UCW keymaps and fonts
5 case "$1" in
7 start)
8 echo "Setting up console"
9 setterm -blank 10 -powersave on
10 loadkeys cs-head.map cs-ucw.map
11 consolechars -f ucw16.psf -m latin2.acm
14 stop|reload|restart|force-reload)
18 echo "Usage: /etc/init.d/$NAME {start|stop|reload|restart|force-reload}"
19 exit 1
22 esac
24 exit 0