diff options
author | hagbard-01 <39653662+hagbard-01@users.noreply.github.com> | 2018-09-08 12:33:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-08 12:33:44 -0700 |
commit | c0f32e28eb972697aa11a4cf9912f457c51f0c10 (patch) | |
tree | 663cc8c6bf43cf1a7cdc5df67c4406d65bc7e297 /data | |
parent | 37bc4c58de2744f9c1b814955f8a8f7057b9f45b (diff) | |
parent | 3dfa3e6736d586e73974a15e29c1fc06f50e673e (diff) | |
download | vyos-1x-c0f32e28eb972697aa11a4cf9912f457c51f0c10.tar.gz vyos-1x-c0f32e28eb972697aa11a4cf9912f457c51f0c10.zip |
Merge pull request #50 from hagbard-01/current
T836: syslog messages split accross multiple files
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/rsyslog/rsyslog.conf | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/data/templates/rsyslog/rsyslog.conf b/data/templates/rsyslog/rsyslog.conf new file mode 100644 index 000000000..0910bd662 --- /dev/null +++ b/data/templates/rsyslog/rsyslog.conf @@ -0,0 +1,59 @@ +# /etc/rsyslog.conf Configuration file for rsyslog. +# + +################# +#### 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 + +$OmitLocalLogging no +$SystemLogSocketName /run/systemd/journal/syslog + +$KLogPath /proc/kmsg + +# 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 + +# Filter duplicated messages +$RepeatedMsgReduction on + +# +# 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 + +############### +#### RULES #### +############### +# Emergencies are sent to everybody logged in. + +*.emerg :omusrmsg:* + |