fsl.inn 691 B

12345678910111213141516171819202122
  1. ##
  2. ## fsl.inn -- OSSP fsl configuration for INN
  3. ##
  4. # use OSSP fsl to perform the equivalent of the
  5. # following syslog.conf(5) configuration entries:
  6. # news.crit @l_prefix@/var/inn/log/news.crit
  7. # news.err @l_prefix@/var/inn/log/news.err
  8. # news.notice @l_prefix@/var/inn/log/news.notice
  9. ident (.+)/news q{
  10. prefix(
  11. prefix="%b %d %H:%M:%S %N $1: ",
  12. timezone=local
  13. )
  14. -> {
  15. critical: file(path="@l_prefix@/var/inn/log/news.crit", append=1, perm=0644);
  16. error: file(path="@l_prefix@/var/inn/log/news.err", append=1, perm=0644);
  17. notice: file(path="@l_prefix@/var/inn/log/news.notice", append=1, perm=0644)
  18. }
  19. };