Jonathan Chong wrote:

I downloaded and installed fam-2.7.0 as recommended by Tony.

I uninstalled the previously installed fam rpms.

Downloaded the 2.7.0 source, extracted it to a folder in /usr/local/src/.

Did a ./configure and make then make install.

Went back to the top of this thread and followed all the instructions.

Still no go.

Don't run it from xinetd, make an rpm from the source (SGI includes a spec file), install that and run it as a stand-alone daemon. My init script is attached, if the list allows attachments.

--Tonni

--
Tony Earnshaw
Email: [EMAIL PROTECTED]
#!/bin/sh
#
# This is a /etc/rc.d/init.d file for the standalone famd daemon
#
# chkconfig: 2345 80 30
# description: auxiliary for Courier-IMAP
#
#
#
. /etc/init.d/functions

case "$1" in
start)
        # Courier needs famd ...
        daemon /usr/sbin/famd -T 0 &
        echo"";echo -n "Starting famd daemon";echo""
        wait
        echo `ps aux | grep famd |grep -v grep | awk '{ print $2 }'` > 
/var/run/famd.pid
        ;;
stop)
        # Stop famd
       echo"";echo "Stopping famd daemon"
       daemon kill `cat /var/run/famd.pid`
        ;;
restart)
        $0 stop
        $0 start
        ;;
esac
exit 0

Reply via email to