Subject: Re: Netatalk -- Kernel Rebuild?
To: Matthew Theobalds <mtheobalds@mac.com>
From: Bob Nestor <rnestor@augustmail.com>
List: port-mac68k
Date: 01/13/2001 21:28:30
Matthew Theobalds wrote:

>That's no problem. Except I only have:
>
>    atalkd.conf 
>    AppleVolumes.system
>    papd.conf 
>    AppleVolumes.default
>
>in that directory. None of them seem to be p recisely what you are hinting
>at, except perhaps atalkd.conf ?
>
>On a side-note, I'll get that tar-ball for your tomorrow, Bob. It seems that
>everyone is happy with what's there now.

Hmmmm, must be some oversight in the package setup.  The file was part of 
past package builds and is on my system as a result of building from 
source, but as you note it isn't in the final package tarball.  This is 
what it contains:

#
# AppleTalk daemons. Make sure not to start atalkd in the background:
# its data structures must have time to stablize before running the
# other processes.
#

#
# SUNOS: UNCOMMENT THESE LINES TO LOAD THE KERNEL MODULE.  Note that
# modunload-ing netatalk may cause your machine to panic or hang.
#
##echo -n 'loading netatalk: '
##if [ -f /etc/netatalk/netatalk.o ]; then
##      /usr/etc/modload -sym /etc/netatalk/netatalk.o;
##fi

echo -n 'starting appletalk daemons:'
if [ -f /usr/pkg/sbin/atalkd ]; then
        /usr/pkg/sbin/atalkd;           echo -n ' atalkd'
fi

if [ -f /usr/pkg/bin/nbprgstr ]; then
        /usr/pkg/bin/nbprgstr -p 4 `hostname|sed 's/\..*$//'`:Workstation
        /usr/pkg/bin/nbprgstr -p 4 `hostname|sed 's/\..*$//'`:netatalk
                                        echo -n ' nbprgstr'
fi

if [ -f /usr/pkg/sbin/papd ]; then
        /usr/pkg/sbin/papd;             echo -n ' papd'
fi

if [ -f /usr/pkg/sbin/afpd ]; then
        /usr/pkg/sbin/afpd;             echo -n ' afpd'
fi

if [ -f /usr/pkg/sbin/timelord ]; then
        /usr/pkg/sbin/timelord;         echo -n ' timelord'
fi

                                        echo '.'