Here is where the problem occurs... This is the daemonic xml file that was created by fink.

-- cut here - openafs-client.xml
<service>
<descripton>OpenAFS Client</descripton>
<message>OpenAFS Client</message>
<daemon name="true">
<executable>/sw/sbin/afsd</executable>
<prerun>
. /sw/etc/openafs/client.conf;
. /sw/lib/openafs/client.parser;
if [ "x$AFS_THISCELL" = "x" ]; then
echo "OpenAFS Client failed, no cell set";
exit 1;
fi
if [ ! -f /sw/etc/openafs/ThisCell ]; then
echo $AFS_THISCELL > /sw/etc/openafs/ThisCell;
fi
if [ ! -d /Network/afs ]; then
mkdir -p /Network/afs;
fi
if [ ! -L /afs ]; then
ln -s /Network/afs /afs
fi
echo "/Network/afs:/sw/var/cache/openafs:$AFS_CACHESIZE" > /sw/etc/openafs/cacheinfo
kextload /sw/lib/openafs/afs.kext
</prerun>
<configfile>/sw/etc/openafs/client.conf</configfile>
<parameters>$OPTIONS</parameters>
</daemon>
</service>
PostInstScript: <<
if [ "x$1" = "xinstall" ]; then
daemonic enable openafs-client;
fi
<<
PreRmScript: <<
if [ "x$1" = "xremove" ]; then
daemonic disable openafs-client;
fi
<<



-------------------------------------------------------
This sf.net email is sponsored by:
With Great Power, Comes Great Responsibility Learn to use your power at OSDN's High Performance Computing Channel
http://hpc.devchannel.org/
_______________________________________________
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to