#!/bin/sh

##
# Local filesystems
##

. /etc/rc.common

StartService ()
{
    ConsoleMessage "Mounting MSDOS partition"
    mount_msdos /dev/disk0s16 /Volumes/Echange
}

StopService ()
{
    return 0;
}

RestartService ()
{
    return 0;
}

RunService "$1"
