#!/bash/bash
### BEGIN INIT INFO
# Provides: mydamond.sh
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: This is a test daemon
# Description: This is a test daemon
### END INIT INFO
case "$1" in
start)
sudo echo "Hallo Welt"
;;
stop)
sudo echo "Bis zum naechsten Mal"
;;
reload)
sudo echo "Bis gleich"
;;
esac
exit 0