diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-01 23:51:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-01 23:51:59 +0200 |
commit | 1f3fc60da529207187fcb0930a06525b6d5b38c9 (patch) | |
tree | 69bae9b9ec9b3e4930938607a98e639e4ef1bc61 | |
parent | 9b4a163a8763df80c18a44c505771d17ae8a25a3 (diff) | |
download | patches-1f3fc60da529207187fcb0930a06525b6d5b38c9.tar patches-1f3fc60da529207187fcb0930a06525b6d5b38c9.tar.gz |
services: syslogd: Write fewer messages to /dev/console.
* gnu/services/base.scm (syslog-service)[contents]: Remove "kern.*" from
/dev/console.
-rw-r--r-- | gnu/services/base.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 102363819c..3643f7cfc1 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -274,11 +274,11 @@ the \"message of the day\"." ;; Snippet adapted from the GNU inetutils manual. (define contents " - # Log all kernel messages, authentication messages of + # Log all error messages, authentication messages of # level notice or higher and anything of level err or # higher to the console. # Don't log private authentication messages! - *.err;kern.*;auth.notice;authpriv.none /dev/console + *.err;auth.notice;authpriv.none /dev/console # Log anything (except mail) of level info or higher. # Don't log private authentication messages! |