-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[frr] remove frr rsyslog file outchannel
SONiC runs FRR inside a docker, the logs are captured in base image. Leaving file outchannel inside docker will generate log file inside the docker and take harddrive space unnecessarily. Signed-off-by: Ying Xie <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
src/sonic-frr/patch/0007-frr-remove-frr-log-outchannel-to-var-log-frr.log.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From 1f150992b074d07bce5157d203319512a3aeb4dc Mon Sep 17 00:00:00 2001 | ||
From: Ying Xie <[email protected]> | ||
Date: Wed, 18 Nov 2020 19:24:51 +0000 | ||
Subject: [PATCH] [frr] remove frr log outchannel to /var/log/frr.log | ||
|
||
SONiC runs frr inside a docker and the logs are sent to base image | ||
via rsyslog and recorded already. There is no need to keep the | ||
frr.log inside the docker. It will grow and take all harddrive | ||
space eventually. | ||
|
||
Signed-off-by: Ying Xie <[email protected]> | ||
--- | ||
tools/etc/rsyslog.d/45-frr.conf | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/tools/etc/rsyslog.d/45-frr.conf b/tools/etc/rsyslog.d/45-frr.conf | ||
index ff7cd4831..af3c2c109 100644 | ||
--- a/tools/etc/rsyslog.d/45-frr.conf | ||
+++ b/tools/etc/rsyslog.d/45-frr.conf | ||
@@ -2,7 +2,7 @@ | ||
# to /var/log/frr/frr.log, then drops the message so it does | ||
# not also go to /var/log/syslog, so the messages are not duplicated | ||
|
||
-$outchannel frr_log,/var/log/frr/frr.log | ||
+$outchannel frr_log | ||
if $programname == 'babeld' or | ||
$programname == 'bgpd' or | ||
$programname == 'eigrpd' or | ||
-- | ||
2.17.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters