blob: 28443088831a9fe2e553c78092571d9cc2a60afb [file] [log] [blame]
pauledd7c242003-06-04 13:59:38 +00001# configure options
paulb63cef72004-08-19 03:36:13 +00002%define with_snmp 1
paul788cdc62003-01-18 00:22:08 +00003%define with_vtysh 1
4%define with_ospf_te 1
5%define with_nssa 1
6%define with_opaque_lsa 1
7%define with_tcp_zebra 0
8%define with_vtysh 1
9%define with_pam 1
10%define with_ipv6 1
paul55ea3812003-04-07 08:14:11 +000011%define with_ospfclient 1
12%define with_ospfapi 1
paul5b819262004-07-28 14:11:55 +000013%define with_irdp 1
paul54b25dc2004-09-30 04:56:26 +000014%define with_isisd 0
15%define with_shared 1
paul8f754982003-01-20 04:55:51 +000016%define with_multipath 64
paul6bd8fd32003-08-12 12:54:13 +000017%define quagga_user quagga
paul45315b52003-08-14 05:23:50 +000018%define vty_group quaggavty
paul30b9d892003-01-18 22:57:15 +000019
20# path defines
paul6bd8fd32003-08-12 12:54:13 +000021%define _sysconfdir /etc/quagga
paul8f754982003-01-20 04:55:51 +000022%define zeb_src %{_builddir}/%{name}-%{version}
23%define zeb_rh_src %{zeb_src}/redhat
24%define zeb_docs %{zeb_src}/doc
paul788cdc62003-01-18 00:22:08 +000025
paule0626852003-03-18 14:11:36 +000026# defines for configure
paul6bd8fd32003-08-12 12:54:13 +000027%define _libexecdir %{_exec_prefix}/libexec/quagga
paul6bd8fd32003-08-12 12:54:13 +000028%define _libdir %{_exec_prefix}/%{_lib}/quagga
paul15d74e92003-12-30 11:16:21 +000029%define _includedir %{_prefix}/include
paul6bd8fd32003-08-12 12:54:13 +000030%define _localstatedir /var/run/quagga
paule0626852003-03-18 14:11:36 +000031
paul15d74e92003-12-30 11:16:21 +000032# misc internal defines
33%define quagga_uid 92
34%define quagga_gid 92
paul54b25dc2004-09-30 04:56:26 +000035%define daemon_list zebra ripd ospfd bgpd
36%if %{with_ipv6}
paul69f5d262004-10-07 16:23:36 +000037%define daemonv6_list %{daemon_list} ripngd ospf6d
paul54b25dc2004-09-30 04:56:26 +000038%endif
39%if %{with_isisd}
paul69f5d262004-10-07 16:23:36 +000040%define daemon_other isisd
41%else
42%define daemon_other ""
paul15d74e92003-12-30 11:16:21 +000043%endif
44
paulb5f310c2004-09-13 13:15:25 +000045# allow build dir to be kept
46%define keep_build 0
47
paul788cdc62003-01-18 00:22:08 +000048Summary: Routing daemon
paul6bd8fd32003-08-12 12:54:13 +000049Name: quagga
paul6382b6f2003-05-20 00:17:45 +000050Version: @VERSION@
pauledd7c242003-06-04 13:59:38 +000051Release: @CONFDATE@01
paul788cdc62003-01-18 00:22:08 +000052License: GPL
53Group: System Environment/Daemons
paul6bd8fd32003-08-12 12:54:13 +000054Source0: http://www.quagga.net/snapshots/cvs/%{name}-%{version}.tar.gz
55URL: http://www.quagga.net
paul54b25dc2004-09-30 04:56:26 +000056%if %{with_snmp}
paulb63cef72004-08-19 03:36:13 +000057BuildRequires: net-snmp-devel
58Prereq: net-snmp
paul788cdc62003-01-18 00:22:08 +000059%endif
paul54b25dc2004-09-30 04:56:26 +000060%if %{with_vtysh}
paul30b9d892003-01-18 22:57:15 +000061BuildRequires: readline readline-devel ncurses ncurses-devel
pauld7ccae22003-01-18 00:24:00 +000062Prereq: readline ncurses
63%endif
paul15d74e92003-12-30 11:16:21 +000064BuildRequires: texinfo tetex autoconf pam-devel patch libcap-devel
paul788cdc62003-01-18 00:22:08 +000065# Initscripts > 5.60 is required for IPv6 support
paul30b9d892003-01-18 22:57:15 +000066Prereq: initscripts >= 5.60
paul45315b52003-08-14 05:23:50 +000067Prereq: ncurses readline pam
paul788cdc62003-01-18 00:22:08 +000068Prereq: /sbin/install-info
69Provides: routingdaemon
70BuildRoot: %{_tmppath}/%{name}-%{version}-root
paul6bd8fd32003-08-12 12:54:13 +000071Obsoletes: bird gated mrt zebra
paul788cdc62003-01-18 00:22:08 +000072
73%description
paul6bd8fd32003-08-12 12:54:13 +000074Quagga is a free software that manages TCP/IP based routing
paul788cdc62003-01-18 00:22:08 +000075protocol. It takes multi-server and multi-thread approach to resolve
76the current complexity of the Internet.
77
paul6bd8fd32003-08-12 12:54:13 +000078Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng.
paul788cdc62003-01-18 00:22:08 +000079
paul6bd8fd32003-08-12 12:54:13 +000080Quagga is intended to be used as a Route Server and a Route Reflector. It is
81not a toolkit, it provides full routing power under a new architecture.
82Quagga by design has a process for each protocol.
83
84Quagga is a fork of GNU Zebra.
paul788cdc62003-01-18 00:22:08 +000085
paul448ed4a2003-03-01 15:43:28 +000086%package contrib
paul6bd8fd32003-08-12 12:54:13 +000087Summary: contrib tools for quagga
paul448ed4a2003-03-01 15:43:28 +000088Group: System Environment/Daemons
89
90%description contrib
paul6bd8fd32003-08-12 12:54:13 +000091Contributed/3rd party tools which may be of use with quagga.
paul448ed4a2003-03-01 15:43:28 +000092
paule0626852003-03-18 14:11:36 +000093%package devel
paul6bd8fd32003-08-12 12:54:13 +000094Summary: Header and object files for quagga development
paule0626852003-03-18 14:11:36 +000095Group: System Environment/Daemons
96
97%description devel
paul6bd8fd32003-08-12 12:54:13 +000098The quagga-devel package contains the header and object files neccessary for
99developing OSPF-API and quagga applications.
paule0626852003-03-18 14:11:36 +0000100
paul788cdc62003-01-18 00:22:08 +0000101%prep
102%setup -q
paul788cdc62003-01-18 00:22:08 +0000103
104%build
105%configure \
paul54b25dc2004-09-30 04:56:26 +0000106%if !%{with_shared}
107 --disable-shared \
108%endif
109%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000110 --enable-ipv6 \
111%endif
paul54b25dc2004-09-30 04:56:26 +0000112%if %{with_snmp}
paul788cdc62003-01-18 00:22:08 +0000113 --enable-snmp \
114%endif
paul54b25dc2004-09-30 04:56:26 +0000115%if %{with_multipath}
116 --enable-multipath=%{with_multipath} \
paul788cdc62003-01-18 00:22:08 +0000117%endif
paul54b25dc2004-09-30 04:56:26 +0000118%if %{with_tcp_zebra}
paul788cdc62003-01-18 00:22:08 +0000119 --enable-tcp-zebra \
120%endif
paul54b25dc2004-09-30 04:56:26 +0000121%if %{with_nssa}
paul788cdc62003-01-18 00:22:08 +0000122 --enable-nssa \
123%endif
paul54b25dc2004-09-30 04:56:26 +0000124%if %{with_opaque_lsa}
paul788cdc62003-01-18 00:22:08 +0000125 --enable-opaque-lsa \
126%endif
paul54b25dc2004-09-30 04:56:26 +0000127%if %{with_ospf_te}
paul788cdc62003-01-18 00:22:08 +0000128 --enable-ospf-te \
129%endif
paul54b25dc2004-09-30 04:56:26 +0000130%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000131 --enable-vtysh \
132%endif
paul54b25dc2004-09-30 04:56:26 +0000133%if %{with_ospfclient}
paul68980082003-03-25 05:07:42 +0000134 --enable-ospfclient=yes \
135%else
136 --enable-ospfclient=no\
137%endif
paul54b25dc2004-09-30 04:56:26 +0000138%if %{with_ospfapi}
paul68980082003-03-25 05:07:42 +0000139 --enable-ospfapi=yes \
140%else
141 --enable-ospfapi=no \
142%endif
paul54b25dc2004-09-30 04:56:26 +0000143%if %{with_irdp}
paul5b819262004-07-28 14:11:55 +0000144 --enable-irdp=yes \
145%else
146 --enable-irdp=no \
147%endif
paul54b25dc2004-09-30 04:56:26 +0000148%if %{with_isisd}
149 --enable-isisd \
150%else
paul69f5d262004-10-07 16:23:36 +0000151 --disable-isisd \
paul54b25dc2004-09-30 04:56:26 +0000152%endif
153%if %{with_pam}
pauledd7c242003-06-04 13:59:38 +0000154 --with-libpam \
paul788cdc62003-01-18 00:22:08 +0000155%endif
paul6bd8fd32003-08-12 12:54:13 +0000156%if %quagga_user
157 --enable-user=%quagga_user \
158 --enable-group=%quagga_user \
pauledd7c242003-06-04 13:59:38 +0000159%endif
160%if %vty_group
161 --enable-vty-group=%vty_group \
162%endif
pauledd7c242003-06-04 13:59:38 +0000163--enable-netlink
paul788cdc62003-01-18 00:22:08 +0000164
165make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
166
167pushd doc
paul6bd8fd32003-08-12 12:54:13 +0000168texi2html quagga.texi
paul788cdc62003-01-18 00:22:08 +0000169popd
170
171%install
172rm -rf $RPM_BUILD_ROOT
173
174install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \
paul6bd8fd32003-08-12 12:54:13 +0000175 $RPM_BUILD_ROOT/var/log/quagga $RPM_BUILD_ROOT%{_infodir}
paul788cdc62003-01-18 00:22:08 +0000176
177make install \
178 DESTDIR=$RPM_BUILD_ROOT
179
paul9a344b72003-08-05 23:24:58 +0000180# Remove this file, as it is uninstalled and causes errors when building on RH9
181rm -rf $RPM_BUILD_ROOT/usr/share/info/dir
182
paul15d74e92003-12-30 11:16:21 +0000183# install etc sources
paul69f5d262004-10-07 16:23:36 +0000184for daemon in %{daemon_list} %{daemonv6_list} %{daemon_other} ; do
paul15d74e92003-12-30 11:16:21 +0000185 install %{zeb_rh_src}/${daemon}.init \
186 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
187done
188install -m644 %{zeb_rh_src}/quagga.pam \
189 $RPM_BUILD_ROOT/etc/pam.d/quagga
190install -m644 %{zeb_rh_src}/quagga.logrotate \
191 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
192install -m644 %{zeb_rh_src}/quagga.sysconfig \
193 $RPM_BUILD_ROOT/etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000194install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000195
196%pre
197# add vty_group
198%if %vty_group
199groupadd -r %vty_group 2> /dev/null || :
200%endif
paul6bd8fd32003-08-12 12:54:13 +0000201# add quagga user and group
202%if %quagga_user
paul15d74e92003-12-30 11:16:21 +0000203/usr/sbin/groupadd -g %quagga_gid quagga 2> /dev/null || :
204/usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
205 -M -r -s /sbin/nologin -c "Quagga routing suite" \
paul6bd8fd32003-08-12 12:54:13 +0000206 -d %_localstatedir %quagga_user 2> /dev/null || :
pauledd7c242003-06-04 13:59:38 +0000207%endif
paul788cdc62003-01-18 00:22:08 +0000208
paul788cdc62003-01-18 00:22:08 +0000209%post
paul30b9d892003-01-18 22:57:15 +0000210# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000211# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
212
213zebra_spec_add_service ()
214{
215 # Add port /etc/services entry if it isn't already there
216 if [ -f /etc/services ] && ! grep -q "^$1[^a-zA-Z0-9]" /etc/services ; then
217 echo "$1 $2 # $3" >> /etc/services
218 fi
219}
220
221zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
222zebra_spec_add_service zebra 2601/tcp "zebra vty"
223zebra_spec_add_service ripd 2602/tcp "RIPd vty"
paul54b25dc2004-09-30 04:56:26 +0000224%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000225zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
pauld7ccae22003-01-18 00:24:00 +0000226%endif
paul788cdc62003-01-18 00:22:08 +0000227zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
228zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
paul54b25dc2004-09-30 04:56:26 +0000229%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000230zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
pauld7ccae22003-01-18 00:24:00 +0000231%endif
paul54b25dc2004-09-30 04:56:26 +0000232%if %{with_ospfapi}
paul7021c422003-07-15 12:52:22 +0000233zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
234%endif
paul54b25dc2004-09-30 04:56:26 +0000235%if %{with_isisd}
jardin5a514b12003-12-23 10:50:21 +0000236zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000237%endif
paul788cdc62003-01-18 00:22:08 +0000238
paul15d74e92003-12-30 11:16:21 +0000239for daemon in %daemon_list ; do
240 /sbin/chkconfig --add ${daemon}
241done
paul788cdc62003-01-18 00:22:08 +0000242
paul6bd8fd32003-08-12 12:54:13 +0000243/sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000244
245# Create dummy files if they don't exist so basic functions can be used.
246if [ ! -e %{_sysconfdir}/zebra.conf ]; then
247 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
248 chmod 640 %{_sysconfdir}/zebra.conf
249fi
250if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
251 touch %{_sysconfdir}/vtysh.conf
252 chmod 640 %{_sysconfdir}/vtysh.conf
253fi
254
255%postun
256if [ "$1" -ge "1" ]; then
paul15d74e92003-12-30 11:16:21 +0000257 for daemon in %daemon_list ; do
258 /etc/rc.d/init.d/${daemon} condrestart >/dev/null 2>&1
259 done
paul788cdc62003-01-18 00:22:08 +0000260fi
paul788cdc62003-01-18 00:22:08 +0000261
262%preun
263if [ "$1" = "0" ]; then
paul15d74e92003-12-30 11:16:21 +0000264 for daemon in %daemon_list ; do
265 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
266 /sbin/chkconfig --del ${daemon}
267 done
268 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000269fi
270
271%clean
paulb5f310c2004-09-13 13:15:25 +0000272%if !%{keep_build}
273rm -rf $RPM_BUILD_ROOT
274%endif
paul788cdc62003-01-18 00:22:08 +0000275
276%files
277%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000278%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000279%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000280%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000281%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
paul54b25dc2004-09-30 04:56:26 +0000282%if %{quagga_user}
paul6bd8fd32003-08-12 12:54:13 +0000283%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
284%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
285%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000286%else
paul788cdc62003-01-18 00:22:08 +0000287%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000288%dir %attr(750,root,root) /var/log/quagga
paul788cdc62003-01-18 00:22:08 +0000289%dir %attr(755,root,root) /usr/share/info
paul6bd8fd32003-08-12 12:54:13 +0000290%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000291%endif
paul54b25dc2004-09-30 04:56:26 +0000292%if %{vty_group}
paul6bd8fd32003-08-12 12:54:13 +0000293%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000294%endif
paul788cdc62003-01-18 00:22:08 +0000295%{_infodir}/*info*
296%{_mandir}/man*/*
paul54b25dc2004-09-30 04:56:26 +0000297%{_sbindir}/zebra
298%{_sbindir}/ospfd
299%{_sbindir}/ripd
300%{_sbindir}/bgpd
301%if %{with_ipv6}
302%{_sbindir}/ripngd
303%{_sbindir}/ospf6d
304%endif
305%if %{with_isisd}
306%{_sbindir}/isisd
307%endif
308%if %{with_shared}
paul2ff9e822004-07-20 11:19:47 +0000309%{_libdir}/lib*.so
310%{_libdir}/lib*.so.*
paul54b25dc2004-09-30 04:56:26 +0000311%endif
312%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000313%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000314%endif
paul6bd8fd32003-08-12 12:54:13 +0000315%config /etc/quagga/[!v]*
paul788cdc62003-01-18 00:22:08 +0000316%config /etc/rc.d/init.d/*
paul15d74e92003-12-30 11:16:21 +0000317%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000318%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000319%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
320
paul448ed4a2003-03-01 15:43:28 +0000321%files contrib
322%defattr(-,root,root)
323%doc tools
324
paule0626852003-03-18 14:11:36 +0000325%files devel
326%defattr(-,root,root)
paul2ff9e822004-07-20 11:19:47 +0000327%dir %{_libdir}/*.a
328%dir %{_libdir}/*.la
paul15d74e92003-12-30 11:16:21 +0000329%dir %{_includedir}/%name/*.h
330%dir %{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000331%if %{with_ospfapi}
paul15d74e92003-12-30 11:16:21 +0000332%dir %{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000333%endif
paule0626852003-03-18 14:11:36 +0000334
paul788cdc62003-01-18 00:22:08 +0000335%changelog
paul15d74e92003-12-30 11:16:21 +0000336%changelog
paul54b25dc2004-09-30 04:56:26 +0000337* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
338- build snmp support by default
339- build irdp support
340- build with shared libs
341- devel subpackage for archives and headers
342
paul00bc5602004-01-09 16:30:52 +0000343* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
344- updated sysconfig files to specify local dir
345- added ospf_dump.c crash quick fix patch
346- added ospfd persistent interface configuration patch
347
paul15d74e92003-12-30 11:16:21 +0000348* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
349- sync to CVS
350- integrate RH sysconfig patch to specify daemon options (RH)
351- default to have vty listen only to 127.1 (RH)
352- add user with fixed UID/GID (RH)
353- create user with shell /sbin/nologin rather than /bin/false (RH)
354- stop daemons on uninstall (RH)
355- delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
356- isisd added
357- cleanup tasks carried out for every daemon
358
paul406f7002003-11-02 07:30:52 +0000359* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
360- Fix -devel package to include all files
361- Sync to 0.96.4
362
paul6bd8fd32003-08-12 12:54:13 +0000363* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
364- Renamed to Quagga
365- Sync to Quagga release 0.96
366
pauledd7c242003-06-04 13:59:38 +0000367* Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
368- zebra privileges support
369
paule0626852003-03-18 14:11:36 +0000370* Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
371- Fix mem leak in 'show thread cpu'
372- Ralph Keller's OSPF-API
373- Amir: Fix configure.ac for net-snmp
374
paul448ed4a2003-03-01 15:43:28 +0000375* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
376- ospfd IOS prefix to interface matching for 'network' statement
377- temporary fix for PtP and IPv6
378- sync to zebra.org CVS
379
paul8f754982003-01-20 04:55:51 +0000380* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
381- update to latest cvs
382- Yon's "show thread cpu" patch - 17217
383- walk up tree - 17218
384- ospfd NSSA fixes - 16681
385- ospfd nsm fixes - 16824
386- ospfd OLSA fixes and new feature - 16823
387- KAME and ifindex fixes - 16525
388- spec file changes to allow redhat files to be in tree
389
pauld7ccae22003-01-18 00:24:00 +0000390* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
391- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
392- Fixed up some build requirements (patch)
393- Added conditional build requirements for vtysh / snmp
394- Added conditional to %files for %_bindir depending on vtysh
395
paul788cdc62003-01-18 00:22:08 +0000396* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
397- update to latest CVS
398- add Greg Troxel's md5 buffer copy/dup fix
399- add RIPv1 fix
400- add Frank's multicast flag fix
401
402* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
403- update to latest CVS
404- timestamped crypt_seqnum patch
405- oi->on_write_q fix
406
407* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
408- update to latest CVS
409- add vtysh 'write-config (integrated|daemon)' patch
410- always 'make rebuild' in vtysh/ to catch new commands
411
412* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
413- update to 0.93b
414
415* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
416- update to latest CVS
417- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
418
419* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
420- update to current CVS
421- add OSPF point to multipoint patch
422- add OSPF bugfixes
423- add BGP hash optimisation patch
424
425* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
426- update to 0.93-pre1 / CVS
427- add link state detection support
428- add generic PtP and RFC3021 support
429- various bug fixes
430
431* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
432- Fix bug #51336
433
434* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
435- Use generic initscript strings instead of initscript specific
436 ( "Starting foo: " -> "Starting $prog:" )
437
438* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
439- Bump the release when rebuilding into the dist.
440
441* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
442- built for Powertools
443
444* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
445- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
446- Update to 0.91a
447- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
448- Should be quite Red Hat'isque now.