Commit d12ed5ac authored by Alessandro Rubini's avatar Alessandro Rubini

userspace: rsyslog.conf: disable all output files

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent f4cc0962
......@@ -5,7 +5,7 @@
# If you do not load inputs, nothing happens!
# You may need to set the module load path if modules are not found.
$ModLoad immark # provides --MARK-- message capability
#$ModLoad immark # provides --MARK-- message capability
$ModLoad imuxsock # provides support for local system logging (e.g. via logger command)
$ModLoad imklog # kernel logging (formerly provided by rklogd)
......@@ -15,26 +15,26 @@ $ModLoad imklog # kernel logging (formerly provided by rklogd)
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none;cron.none -/var/log/messages
#*.info;mail.none;authpriv.none;cron.none -/var/log/messages
# The authpriv file has restricted access.
authpriv.* /var/log/secure
#authpriv.* /var/log/secure
# Log all the mail messages in one place.
mail.* -/var/log/maillog
#mail.* -/var/log/maillog
# Log cron stuff
cron.* -/var/log/cron
#cron.* -/var/log/cron
# Everybody gets emergency messages
*.emerg *
#*.emerg *
# Save news errors of level crit and higher in a special file.
uucp,news.crit -/var/log/spooler
#uucp,news.crit -/var/log/spooler
# Save boot messages also to boot.log
local7.* /var/log/boot.log
#local7.* /var/log/boot.log
# Remote Logging (we use TCP for reliable delivery)
# An on-disk queue is created for this action. If the remote host is
......@@ -46,7 +46,8 @@ local7.* /var/log/boot.log
#$ActionQueueType LinkedList # run asynchronously
#$ActionResumeRetryCount -1 # infinite retries if host is down
# remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional
#*.* @@remote-host:514
##*.* @@remote-host:514
# ######### Receiving Messages from Remote Hosts ##########
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment