#!/bin/bash
#
# local        Sample local - runs 'last'
#
#
# chkconfig: 2345 12 88
# description: this script runs last
### BEGIN INIT INFO
# Provides: local
# X-serel-last:
### END INIT INFO

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

exit 0
