#! /bin/sh
# /etc/init.d/skeleton: example file to build /etc/init.d/ scripts.
# $Id: skeleton,v 1.1 1995/02/19 20:29:29 imurdock Exp $
#
# This file should be used to construct scripts for /etc/init.d.
# In Debian GNU/Linux 0.93 Release 4, this directory replaces
# /etc/rc.misc, which was used in previous releases of Debian
# 0.93.  Scripts in /etc/rc.misc will still be executed for
# the moment (see /etc/init.d/compat), but all scripts should
# eventually be moved into /etc/init.d.
#
# Written by Miquel van Smoorenburg <miquels@drinkel.nl.mugnet.org>.
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>.

. /etc/init.d/functions

case "$1" in
  start)
    ;;
  stop)
    ;;
  *)
    echo "Usage: /etc/init.d/skeleton {start|stop}"
    exit 1
esac

exit 0
