1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
tag:
type: txt
help: "Configure facility for system logging"
syntax: $(@) in "auth", "authpriv", "cron", "daemon", "kern", "lpr", "mail", "mark", "news", "security", "syslog", "user", "uucp", "local0", "local1", "local2", "local3", "local4", "local5", "local6", "local7", "all"; "\"$(@)\" is not a valid logging facility"
update: "sudo sh -c \"LVL=`echo -n $(level/@) | tr '[a-z]' '[A-Z]'` && \
FAC='$(@)' ; if [ x\\\\\$FAC == xall ]; then FAC='*'; fi && \
/opt/vyatta/sbin/vyatta_update_syslog.pl '' '\\/var\\/log\\/messages' \
\\\"\\\\\$FAC.\\\\\$LVL\t/var/log/messages \n\\\"\" "
delete: "sudo sh -c \"FAC='$(@)' ; \
if [ x\\\\\$FAC == xall ]; then FAC='*'; fi && \
/opt/vyatta/sbin/vyatta_update_syslog.pl \
'' '\\/var\\/log\\/messages' '*.warning\t/var/log/messages \n'\" "
#comp_help:Available logging facilities:
# all All facilities excluding "mark"
# auth Authentication and authorization
# authpriv Non-system authorization
# cron Cron daemon
# daemon System daemons
# kern Kernel
# lpr Line printer spooler
# mail Mail subsystem
# mark Timestamp
# news USENET subsystem
# security Authentication and authorization
# syslog Authentication and authorization
# user Application processes
# uucp UUCP subsystem
# local0 Local facility 0
# local1 Local facility 1
# local2 Local facility 2
# local3 Local facility 3
# local4 Local facility 4
# local5 Local facility 5
# local6 Local facility 6
# local7 Local facility 7
|