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