#!/bin/sh

if [ -f /etc/SuSE-release ] ; then
    /alma/ACS-8.1/ACSSW/bin/tomcat.suse $1
elif [ -f /etc/redhat-release ] ; then
    /alma/ACS-8.1/ACSSW/bin/tomcat.redhat $1
elif [ -f /etc/debian_version ] ; then
    /alma/ACS-8.1/ACSSW/bin/tomcat.debian $1
else
    echo "Unknown distribution. Try calling one of:"
    echo "	/alma/ACS-8.1/ACSSW/bin/tomcat.redhat"
    echo "	/alma/ACS-8.1/ACSSW/bin/tomcat.suse"
    echo "	/alma/ACS-8.1/ACSSW/bin/tomcat.debian"
fi
