diff options
Diffstat (limited to 'sysconf')
-rw-r--r-- | sysconf/rsyslog.conf | 46 | ||||
-rw-r--r-- | sysconf/syslog.conf | 12 |
2 files changed, 46 insertions, 12 deletions
diff --git a/sysconf/rsyslog.conf b/sysconf/rsyslog.conf new file mode 100644 index 00000000..9d767d90 --- /dev/null +++ b/sysconf/rsyslog.conf @@ -0,0 +1,46 @@ +# /etc/rsyslog.conf Configuration file for rsyslog. +# +# For more information see +# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html + + +################# +#### MODULES #### +################# + +$ModLoad imuxsock # provides support for local system logging +$ModLoad imklog # provides kernel logging support (previously done by rklogd) +#$ModLoad immark # provides --MARK-- message capability + +# provides UDP syslog reception +#$ModLoad imudp +#$UDPServerRun 514 + +# provides TCP syslog reception +#$ModLoad imtcp +#$InputTCPServerRun 514 + + +########################### +#### GLOBAL DIRECTIVES #### +########################### + +# +# Use traditional timestamp format. +# To enable high precision timestamps, comment out the following line. +# +$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat + +# +# Set the default permissions for all log files. +# +$FileOwner root +$FileGroup adm +$FileCreateMode 0640 +$DirCreateMode 0755 +$Umask 0022 + +# +# Include all config files in /etc/rsyslog.d/ +# +$IncludeConfig /etc/rsyslog.d/*.conf diff --git a/sysconf/syslog.conf b/sysconf/syslog.conf deleted file mode 100644 index 2f443198..00000000 --- a/sysconf/syslog.conf +++ /dev/null @@ -1,12 +0,0 @@ -# /etc/syslog.conf Configuration file for syslogd. -# -# For more information see syslog.conf(5) -# manpage. -# -# WARNING - -# The following are modified Vyatta Fusion CLI related configuration -# any changes outside CLI will be lost -### BEGIN VYATTA -*.notice;local7.* -/var/log/messages -### END VYATTA |