diff options
Diffstat (limited to 'data/live-build-config')
-rwxr-xr-x | data/live-build-config/hooks/live/30-frr-configs.chroot | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/live/30-frr-configs.chroot b/data/live-build-config/hooks/live/30-frr-configs.chroot index 97abe1e6..e7873912 100755 --- a/data/live-build-config/hooks/live/30-frr-configs.chroot +++ b/data/live-build-config/hooks/live/30-frr-configs.chroot @@ -51,9 +51,23 @@ watchfrr_enable=no valgrind_enable=no """ +frr_conf = """ +log syslog +log facility local7 +""" + +frr_log = '' + with open("/etc/frr/daemons", "w") as f: f.write(daemons) +with open("/etc/frr/frr.conf", "w") as f: + f.write(frr_conf) + +# Prevent writing logs to /var/log/frr/frr.log. T2061 +with open("/etc/rsyslog.d/45-frr.conf", "w") as f: + f.write(frr_log) + # Create empty daemon configs so that they start properly for name in ["zebra.conf", "bgpd.conf", "ospfd.conf", "ospf6d.conf", "ripd.conf", "ripngd.conf"]: open(os.path.join("/etc/frr", name), 'a').close() |