AppleShare   [plain text]


#!/bin/sh

##
# Apple File Protocol
##

. /etc/rc.common

StartService ()
{
    if [ "${AFPSERVER:=-NO-}" = "-YES-" ]; then
	echo "Starting Apple File Service"
	/usr/sbin/AppleFileServer
    fi
}

StopService ()
{
    return 0
}

RestartService ()
{
    return 0
}

RunService "$1"