On Sun, Apr 04, 1999 at 03:50:31PM -0700, Bill Parker wrote:
> Hello,
>
> I believe I have my CNAME problem with AOL solved, but it will take
> a day or two to be certain. On a more difficult note, I have the following
> script to stop, start, restart, and status qmail (which was furnished by
> inter7.com, good commercial support for qmail IMO):
>
> [billp@odie billp]$ cat /etc/rc.d/init.d/qmail
> #!/bin/sh
>
> # Qmail Startup
>
> PROG=qmail # what program are we playing with?
> COMMAND=$PROG # command to start $PROG
> DIR=/var/lock/$PROG # a directory for supervise to use
> LOGDIR=/var/log/$PROG # directory for logs
>
> # Source function library.
> INITDIR=/etc/rc.d/init.d # location of initscripts
> . $INITDIR/daemontools.functions
^^^^^^^^^^^^^^^^^^^^^
On my Redhat box, this file is called "functions," not "daemontools.functions."
This is the file that killproc is defined in. You might try changing this line
to:
. $INITDIR/functions
if that's the name of the file on your system.
Chris