#!/bin/sh
#
# Start or stop 'whereami'
#
# Andreas Tille <tille@debian.org>
#
# Only the 'start' case is actually interesting at this point

test -x /usr/sbin/whereami || exit 0

case "$1" in
    start)
	echo "Nothing to start for offline Setup."
    ;;

    stop)
    ;;

    restart)
    ;;
    
    force-reload)
    ;;


    *)
	echo "Usage: /etc/init.d/whereami {start|stop|restart|force-reload}" >&2
	exit 1
    ;;
esac

exit 0
