#!/bin/sh set -e ### BEGIN INIT INFO # Provides: binary # Required-Start: # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Useless # Description: Does nothing ### END INIT INFO . /lib/lsb/init-functions case "$1" in start|stop|force-reload|restart|status|*) echo hello world ;; esac