#! /bin/sh ### BEGIN INIT INFO # Provides: n4d-hardware # Required-Start: # Required-Stop: sendsigs # Default-Start: # Default-Stop: 0 6 # Short-Description: Execute the reboot command. # Description: ### END INIT INFO PATH=/sbin:/usr/sbin:/bin:/usr/bin . /lib/lsb/init-functions case "$1" in start) ;; restart|reload|force-reload) ;; stop) /usr/bin/n4d-hardware-shutdown ;; *) echo "Usage: $0 start" >&2 exit 3 ;; esac