You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
627 B
20 lines
627 B
## |
|
## fsl.inn -- OSSP fsl configuration |
|
## |
|
|
|
# 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: " |
|
) |
|
-> { |
|
critical: file(path="@l_prefix@/var/inn/log/news.crit", perm=0644); |
|
error: file(path="@l_prefix@/var/inn/log/news.err", perm=0644); |
|
notice: file(path="@l_prefix@/var/inn/log/news.notice", perm=0644) |
|
} |
|
}; |
|
|
|
|