#!/bin/sh
# Begin /etc/init.d/halt

#
# halt the system
#

source $INIT_D/functions

if [ "$1" == "stop" ]; then exit 0; fi
if [ "$1" != "start" ]; then exit 1; fi

shutdown -h -q now

# End /etc/init.d/halt
