#!/bin/sh
if [ -n "$1" ]
then
   case "$1" in
        start) /opt/tarantella/tools/monitor auto $1 ;;
        stop) /opt/tarantella/tools/monitor auto $1 ;;
   esac
fi

