| 12345678910111213141516171819202122 |
- ##
- ## fsl.inn -- OSSP fsl configuration for INN
- ##
- # use OSSP fsl to perform the equivalent of the
- # following syslog.conf(5) configuration entries:
- # news.crit @l_prefix@/var/inn/log/news.crit
- # news.err @l_prefix@/var/inn/log/news.err
- # news.notice @l_prefix@/var/inn/log/news.notice
- ident (.+)/news q{
- prefix(
- prefix="%b %d %H:%M:%S %N $1: ",
- timezone=local
- )
- -> {
- critical: file(path="@l_prefix@/var/inn/log/news.crit", append=1, perm=0644);
- error: file(path="@l_prefix@/var/inn/log/news.err", append=1, perm=0644);
- notice: file(path="@l_prefix@/var/inn/log/news.notice", append=1, perm=0644)
- }
- };
|