#!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later depend() { need localmount } start() { ebegin "Loading redir module" /sbin/modprobe -s redir eend $? # try to load coda module (no problem if it fails, because it can be # in the kernel) /sbin/modprobe coda > /dev/null 2>&1 ebegin "Starting avfscoda" /usr/sbin/avfscoda eend $? } stop() { ebegin "Stopping avfscoda" if test -x /usr/sbin/flushredir; then /usr/sbin/flushredir fi killall avfscoda > /dev/null 2>&1 eend $? ebegin "Unloading redir module" /sbin/rmmod -s redir eend $? }