summaryrefslogtreecommitdiff
path: root/data/live-build-config/hooks/live/30-frr-configs.chroot
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-06-19 13:30:17 +0200
committerChristian Poessinger <christian@poessinger.com>2019-06-19 13:30:17 +0200
commit6638c5d0f1a6c8b0a4d8fc016c1797c4526a53fd (patch)
tree1c3dd478d20e7e57493adc59857743394d9d8725 /data/live-build-config/hooks/live/30-frr-configs.chroot
parent70366de29543a5b66e7ea7a42f2b01e0eec06689 (diff)
downloadvyos-build-6638c5d0f1a6c8b0a4d8fc016c1797c4526a53fd.tar.gz
vyos-build-6638c5d0f1a6c8b0a4d8fc016c1797c4526a53fd.zip
T1454: remove deprecated /etc/frr/daemons.conf
File which was still present (but not of any problem) caused the following message: Jun 19 11:14:27 localhost watchfrr.sh: Reading deprecated /etc/frr/daemons.conf. Please move its settings to /etc/frr/daemons and remove it.
Diffstat (limited to 'data/live-build-config/hooks/live/30-frr-configs.chroot')
-rwxr-xr-xdata/live-build-config/hooks/live/30-frr-configs.chroot5
1 files changed, 0 insertions, 5 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 d3cfbce5..b033d3b8 100755
--- a/data/live-build-config/hooks/live/30-frr-configs.chroot
+++ b/data/live-build-config/hooks/live/30-frr-configs.chroot
@@ -28,9 +28,7 @@ sharpd=no
pbrd=no
bfdd=no
staticd=yes
-"""
-daemons_conf = """
vtysh_enable=yes
zebra_options=" -s 90000000 --daemon -A 127.0.0.1 -M snmp -n"
bgpd_options=" --daemon -A 127.0.0.1 -M snmp -M rpki"
@@ -59,9 +57,6 @@ valgrind=/usr/bin/valgrind
with open("/etc/frr/daemons", "w") as f:
f.write(daemons)
-with open("/etc/frr/daemons.conf", "w") as f:
- f.write(daemons_conf)
-
# 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()