#!/bin/sh # /etc/init.d/reboot - reboot the system PATH=/sbin:/bin ; export PATH case $1 in stop) echo "Initiating system reboot." reboot ;; *) echo "usage: $0 stop" ;; esac