> /var/log/httpd/*log {
>     missingok
>     notifempty
>     sharedscripts
>     postrotate
>   /bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
>     endscript
> }

basically you are reloading apache with the new config files so you can write to
them.

you could also do this:

postrotate
  /etc/init.d/httpd reload > /dev/null 2>&1 || true     #ala gentoo
endscript

--
thebigdog

_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to