#!/bin/sh
#
#    Copyright (c) 1996-2003 Brocade Communications Systems, Inc.
#    All rights reserved.
#
#    Display system startup and shutdown announcements.
#

# Source common library
. /etc/init.d/functions

case $1 in

'start')
    $ECHO "The system is coming up."
    ;;

'stop')
    $ECHO "The system is shutting down.\nPlease wait."
    ;;
	
esac
