Fran�ois Philippo <[EMAIL PROTECTED]> wrote:
> for the moment logs are printing on screen
> how can have logs in a (differents) files ??
> does I need to run someting in each run file (pop, smtp, send) ??
You haven't told us how you set up your services, so it's impossible
to say what the problem is. One possible problem is that you're using
daemontools<=0.70 and you forgot to make the service directories
sticky. If so, do this:
for i in /service/*; do
if [ -d "$i"/log ]; then
chmod +t "$i"
fi
done
find and kill svscan
svc -dx /service/* /service/*/log
restart svscan
paul