#!/bin/sh
#
# rmnologin        Sample xdm - runs 'late'
#
#
# chkconfig: 2345 12 88
# description: this script runs last

case "$1" in
  start)
	;;
  stop)
	;;
  *)
	echo $"Usage: $0 {start|stop}"
	exit 1
esac

exit 0
