#! /bin/sh
# /etc/init.d/local: The final system setup
# $Id: local,v 1.00 1996/03/31 19:20:00 patrol Exp $
#
# This startup script is executed as the last one in startup process
# and as the first one in the shutdown process. Various non-standard
# local system features should be handled here.

case "$1" in
  start)
    echo "Executing local setup script."
    setfont ucw16.psf
    mapscrnuni </usr/share/kbd/consoletrans/latin2.table
    loadkeys cs-head.map cs-ucw.map
    echo -en "\033(K"
    ;;
  stop)
    echo "Executing local setdown script."
    ;;
  *)
    echo "Usage: local {start|stop}"
    exit 1
    ;;
esac
exit 0
# end of local

