having a problem with multilog not shutting down...

Jeremy Hansen <[email protected]> Mon, 28 Jan 2013 16:08:16 -0800
Newsgroups gmane.comp.djb.syslog
Message-ID <[email protected]>
Here's my run script for the application:

#!/bin/sh

exec 2>&1

exec envdir ./env sh -c '
export PATH=3D$PATH:$JAVA_BASE/bin
exec setuidgid $USER $STORM_BASE/bin/storm drpc
'


Here's my run script for multilog:

#!/bin/sh

exec envdir ../env sh -c '
exec setuidgid $USER multilog t "/drpc/local/logs/drpc"
'

When trying to stop the service, the application stops fine, but =
multilog never shuts down:

[[email protected]:/service/drpc/log]# svc-stop drpc
Stopping drpc: drpc ...............svc-stop: Fatal error: Failed to stop =
'drpc/log'.

Trying to figure out why it never shuts down.

Thanks
-jeremy=