#! /bin/sh
#
# xreconfig
#
# chkconfig: 35 89 11
# description: Sets keyboards and font paths.

# See how we were called.
case "$1" in
  start)
	/usr/X11R6/bin/xreconfig auto
	/sbin/chkconfig --del xreconfig
	;;
  stop)
	;;
  *)
	echo "Usage: xreconfig {start|stop}"
	exit 1
esac

exit 0
