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

#
# reboot the system
#

source $INIT_D/functions

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

echo "System reboot in progress..."

shutdown -r -q now

# End /etc/init.d/reboot
