#!/bin/bash
#
# test scripts
#
### BEGIN INIT INFO
# Provides: echo
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description:
# Description:
### END INIT INFO
case $1 in
start)
echo "Hallo Welt, David Vajda"
;;
stop)
echo "tschuess Welt"
;;W
esac