summaryrefslogtreecommitdiff
path: root/templates/system/syslog/user
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@vyatta.com>2008-01-31 07:59:02 -0800
committerAn-Cheng Huang <ancheng@vyatta.com>2008-01-31 07:59:02 -0800
commit622bbf801bd435a3848c669ff2c0e9090cd2bb4e (patch)
tree328d04410e8fed64e6a8b25abdf58f199d916c2d /templates/system/syslog/user
parentc2c002021eab0adff7e4d268535170658a1b0c6c (diff)
downloadvyatta-cfg-system-622bbf801bd435a3848c669ff2c0e9090cd2bb4e.tar.gz
vyatta-cfg-system-622bbf801bd435a3848c669ff2c0e9090cd2bb4e.zip
convert templates to new syntax
Diffstat (limited to 'templates/system/syslog/user')
-rw-r--r--templates/system/syslog/user/node.def2
-rw-r--r--templates/system/syslog/user/node.tag/facility/node.def66
-rw-r--r--templates/system/syslog/user/node.tag/facility/node.tag/level/node.def22
3 files changed, 45 insertions, 45 deletions
diff --git a/templates/system/syslog/user/node.def b/templates/system/syslog/user/node.def
index ba731ca3..d30126ee 100644
--- a/templates/system/syslog/user/node.def
+++ b/templates/system/syslog/user/node.def
@@ -1,3 +1,3 @@
tag:
type: txt
-help: "Configure syslog user account output"
+help: Configure syslog user account output
diff --git a/templates/system/syslog/user/node.tag/facility/node.def b/templates/system/syslog/user/node.tag/facility/node.def
index a3e6e5fc..1d349e16 100644
--- a/templates/system/syslog/user/node.tag/facility/node.def
+++ b/templates/system/syslog/user/node.tag/facility/node.def
@@ -1,35 +1,35 @@
tag:
type: txt
-help: "Configure facility for user 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 \\\"\\\\\$FAC\\.\\\\\$LVL\\\" \
- ' $(../@) ' \\\"\\\\\$FAC.\\\\\$LVL $(../@) \n\\\"\" "
-delete: "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 \\\"\\\\\$FAC\\.\\\\\$LVL\\\" \
- ' $(../@) ' ''\" "
-#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
+help: Configure facility for user logging
+syntax:expression: $VAR(@) in "auth", "authpriv", "cron", "daemon", "kern", "lpr", "mail", "mark", "news", "security", "syslog", "user", "uucp", "local0", "local1", "local2", "local3", "local4", "local5", "local6", "local7", "all"; "\"$VAR(@)\" is not a valid logging facility"
+update:expression: "sudo sh -c \"LVL=`echo -n $VAR(level/@) | tr '[a-z]' '[A-Z]'` && \
+FAC='$VAR(@)' ; if [ x\\$FAC == xall ]; then FAC='*'; fi && \
+/opt/vyatta/sbin/vyatta_update_syslog.pl \\\"\\$FAC\\.\\$LVL\\\" \
+ ' $VAR(../@) ' \\\"\\$FAC.\\$LVL $VAR(../@) \n\\\"\" "
+delete:expression: "sudo sh -c \"LVL=`echo -n $VAR(level/@) | tr '[a-z]' '[A-Z]'` && \
+FAC='$VAR(@)' ; if [ x\\$FAC == xall ]; then FAC='*'; fi && \
+/opt/vyatta/sbin/vyatta_update_syslog.pl \\\"\\$FAC\\.\\$LVL\\\" \
+ ' $VAR(../@) ' ''\" "
+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
diff --git a/templates/system/syslog/user/node.tag/facility/node.tag/level/node.def b/templates/system/syslog/user/node.tag/facility/node.tag/level/node.def
index ea75775a..d690ecd2 100644
--- a/templates/system/syslog/user/node.tag/facility/node.tag/level/node.def
+++ b/templates/system/syslog/user/node.tag/facility/node.tag/level/node.def
@@ -1,13 +1,13 @@
type: txt
-help: "Configure the logging level"
-syntax: $(@) in "emerg", "alert", "crit", "err", "warning", "notice", "info", "debug"; "\"$(@)\" is not a valid logging level"
+help: Configure the logging level
+syntax:expression: $VAR(@) in "emerg", "alert", "crit", "err", "warning", "notice", "info", "debug"; "\"$VAR(@)\" is not a valid logging level"
default: "err"
-#comp_help:Logging levels in descending order of severity:
-# emerg Emergency messages
-# alert Urgent messages
-# crit Critical messages
-# err Error messages
-# warning Warning messages
-# notice Messages for further investigation
-# info Informational messages
-# debug Debug messages
+comp_help:Logging levels in descending order of severity:
+ emerg Emergency messages
+ alert Urgent messages
+ crit Critical messages
+ err Error messages
+ warning Warning messages
+ notice Messages for further investigation
+ info Informational messages
+ debug Debug messages