From: paul Date: Sun, 6 Jun 2004 15:46:23 +0000 (+0000) Subject: Fix stray dollar sign that had crept into OSPF6D_OPTS and prevented ospf6d X-Git-Tag: frr-2.0-rc1~3692 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=d47b7ba10bdd17d9f723a5fc42b2f71668e27a22;p=matthieu%2Ffrr.git Fix stray dollar sign that had crept into OSPF6D_OPTS and prevented ospf6d from starting. --- diff --git a/redhat/quagga.sysconfig b/redhat/quagga.sysconfig index 2194d6aa59..d2d68d0477 100644 --- a/redhat/quagga.sysconfig +++ b/redhat/quagga.sysconfig @@ -3,7 +3,7 @@ # QCONFDIR="/etc/quagga" BGPD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/bgpd.conf" -OSPF6D_OPTS="-A ::1$ -f ${QCONFDIR}/ospf6d.conf" +OSPF6D_OPTS="-A ::1 -f ${QCONFDIR}/ospf6d.conf" OSPFD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/ospfd.conf" RIPD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/ripd.conf" RIPNGD_OPTS="-A ::1 -f ${QCONFDIR}/ripngd.conf"