#!/bin/sh
INIT=/etc/rc.d/init.d/$1

if [ -z "$1" ] ; then
        echo "use: start subsystem"
        exit -1
fi

if [ ! -f $INIT ] ; then
        INIT=$INIT'.init'
        if [ ! -f $INIT ] ; then
                echo "start: $1: not found"
                exit -1
        fi
fi

exec $INIT start






