#!/bin/sh

case "$1" in
 start)
 
 jackd -d alsa &      
   ;;

 stop)
	   echo -n "Nothing to stop"
;;
	
 restart)
	   echo -n "Nothing to restart"
 ;;
esac