blob: c61ab72f54dfd47df31be95f932bc80c8542326d [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
paulcfc18422004-10-23 00:05:41 +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
paul0df63b52004-11-07 22:12:23 +000036
paul54b25dc2004-09-30 04:56:26 +000037%if %{with_ipv6}
paul69f5d262004-10-07 16:23:36 +000038%define daemonv6_list %{daemon_list} ripngd ospf6d
paul0df63b52004-11-07 22:12:23 +000039%else
40%define daemonv6_list ""
paul54b25dc2004-09-30 04:56:26 +000041%endif
paul0df63b52004-11-07 22:12:23 +000042
paul54b25dc2004-09-30 04:56:26 +000043%if %{with_isisd}
paul69f5d262004-10-07 16:23:36 +000044%define daemon_other isisd
45%else
46%define daemon_other ""
paul15d74e92003-12-30 11:16:21 +000047%endif
48
paulb5f310c2004-09-13 13:15:25 +000049# allow build dir to be kept
50%define keep_build 0
51
paul788cdc62003-01-18 00:22:08 +000052Summary: Routing daemon
paul6bd8fd32003-08-12 12:54:13 +000053Name: quagga
paul6382b6f2003-05-20 00:17:45 +000054Version: @VERSION@
pauledd7c242003-06-04 13:59:38 +000055Release: @CONFDATE@01
paul788cdc62003-01-18 00:22:08 +000056License: GPL
57Group: System Environment/Daemons
paul6bd8fd32003-08-12 12:54:13 +000058Source0: http://www.quagga.net/snapshots/cvs/%{name}-%{version}.tar.gz
59URL: http://www.quagga.net
paul54b25dc2004-09-30 04:56:26 +000060%if %{with_snmp}
paulb63cef72004-08-19 03:36:13 +000061BuildRequires: net-snmp-devel
62Prereq: net-snmp
paul788cdc62003-01-18 00:22:08 +000063%endif
paul54b25dc2004-09-30 04:56:26 +000064%if %{with_vtysh}
paul30b9d892003-01-18 22:57:15 +000065BuildRequires: readline readline-devel ncurses ncurses-devel
pauld7ccae22003-01-18 00:24:00 +000066Prereq: readline ncurses
67%endif
paul15d74e92003-12-30 11:16:21 +000068BuildRequires: texinfo tetex autoconf pam-devel patch libcap-devel
paul788cdc62003-01-18 00:22:08 +000069# Initscripts > 5.60 is required for IPv6 support
paul30b9d892003-01-18 22:57:15 +000070Prereq: initscripts >= 5.60
paul45315b52003-08-14 05:23:50 +000071Prereq: ncurses readline pam
paul788cdc62003-01-18 00:22:08 +000072Prereq: /sbin/install-info
73Provides: routingdaemon
74BuildRoot: %{_tmppath}/%{name}-%{version}-root
paul6bd8fd32003-08-12 12:54:13 +000075Obsoletes: bird gated mrt zebra
paul788cdc62003-01-18 00:22:08 +000076
77%description
paul6bd8fd32003-08-12 12:54:13 +000078Quagga is a free software that manages TCP/IP based routing
paul788cdc62003-01-18 00:22:08 +000079protocol. It takes multi-server and multi-thread approach to resolve
80the current complexity of the Internet.
81
paul6bd8fd32003-08-12 12:54:13 +000082Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng.
paul788cdc62003-01-18 00:22:08 +000083
paul6bd8fd32003-08-12 12:54:13 +000084Quagga is intended to be used as a Route Server and a Route Reflector. It is
85not a toolkit, it provides full routing power under a new architecture.
86Quagga by design has a process for each protocol.
87
88Quagga is a fork of GNU Zebra.
paul788cdc62003-01-18 00:22:08 +000089
paul448ed4a2003-03-01 15:43:28 +000090%package contrib
paul6bd8fd32003-08-12 12:54:13 +000091Summary: contrib tools for quagga
paul448ed4a2003-03-01 15:43:28 +000092Group: System Environment/Daemons
93
94%description contrib
paul6bd8fd32003-08-12 12:54:13 +000095Contributed/3rd party tools which may be of use with quagga.
paul448ed4a2003-03-01 15:43:28 +000096
paule0626852003-03-18 14:11:36 +000097%package devel
paul6bd8fd32003-08-12 12:54:13 +000098Summary: Header and object files for quagga development
paule0626852003-03-18 14:11:36 +000099Group: System Environment/Daemons
100
101%description devel
paul6bd8fd32003-08-12 12:54:13 +0000102The quagga-devel package contains the header and object files neccessary for
103developing OSPF-API and quagga applications.
paule0626852003-03-18 14:11:36 +0000104
paul788cdc62003-01-18 00:22:08 +0000105%prep
106%setup -q
paul788cdc62003-01-18 00:22:08 +0000107
108%build
109%configure \
paul54b25dc2004-09-30 04:56:26 +0000110%if !%{with_shared}
111 --disable-shared \
112%endif
113%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000114 --enable-ipv6 \
115%endif
paul54b25dc2004-09-30 04:56:26 +0000116%if %{with_snmp}
paul788cdc62003-01-18 00:22:08 +0000117 --enable-snmp \
118%endif
paul54b25dc2004-09-30 04:56:26 +0000119%if %{with_multipath}
120 --enable-multipath=%{with_multipath} \
paul788cdc62003-01-18 00:22:08 +0000121%endif
paul54b25dc2004-09-30 04:56:26 +0000122%if %{with_tcp_zebra}
paul788cdc62003-01-18 00:22:08 +0000123 --enable-tcp-zebra \
124%endif
paul54b25dc2004-09-30 04:56:26 +0000125%if %{with_nssa}
paul788cdc62003-01-18 00:22:08 +0000126 --enable-nssa \
127%endif
paul54b25dc2004-09-30 04:56:26 +0000128%if %{with_opaque_lsa}
paul788cdc62003-01-18 00:22:08 +0000129 --enable-opaque-lsa \
130%endif
paul54b25dc2004-09-30 04:56:26 +0000131%if %{with_ospf_te}
paul788cdc62003-01-18 00:22:08 +0000132 --enable-ospf-te \
133%endif
paul54b25dc2004-09-30 04:56:26 +0000134%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000135 --enable-vtysh \
136%endif
paul54b25dc2004-09-30 04:56:26 +0000137%if %{with_ospfclient}
paul68980082003-03-25 05:07:42 +0000138 --enable-ospfclient=yes \
139%else
140 --enable-ospfclient=no\
141%endif
paul54b25dc2004-09-30 04:56:26 +0000142%if %{with_ospfapi}
paul68980082003-03-25 05:07:42 +0000143 --enable-ospfapi=yes \
144%else
145 --enable-ospfapi=no \
146%endif
paul54b25dc2004-09-30 04:56:26 +0000147%if %{with_irdp}
paul5b819262004-07-28 14:11:55 +0000148 --enable-irdp=yes \
149%else
150 --enable-irdp=no \
151%endif
paul54b25dc2004-09-30 04:56:26 +0000152%if %{with_isisd}
153 --enable-isisd \
154%else
paul69f5d262004-10-07 16:23:36 +0000155 --disable-isisd \
paul54b25dc2004-09-30 04:56:26 +0000156%endif
157%if %{with_pam}
pauledd7c242003-06-04 13:59:38 +0000158 --with-libpam \
paul788cdc62003-01-18 00:22:08 +0000159%endif
paul6bd8fd32003-08-12 12:54:13 +0000160%if %quagga_user
161 --enable-user=%quagga_user \
162 --enable-group=%quagga_user \
pauledd7c242003-06-04 13:59:38 +0000163%endif
164%if %vty_group
165 --enable-vty-group=%vty_group \
166%endif
pauledd7c242003-06-04 13:59:38 +0000167--enable-netlink
paul788cdc62003-01-18 00:22:08 +0000168
169make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
170
171pushd doc
paul36002ae2004-11-08 17:36:29 +0000172makeinfo --no-split --html -o quagga.html quagga.texi
paul788cdc62003-01-18 00:22:08 +0000173popd
174
175%install
176rm -rf $RPM_BUILD_ROOT
177
178install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \
paul6bd8fd32003-08-12 12:54:13 +0000179 $RPM_BUILD_ROOT/var/log/quagga $RPM_BUILD_ROOT%{_infodir}
paul788cdc62003-01-18 00:22:08 +0000180
181make install \
182 DESTDIR=$RPM_BUILD_ROOT
183
paul9a344b72003-08-05 23:24:58 +0000184# Remove this file, as it is uninstalled and causes errors when building on RH9
185rm -rf $RPM_BUILD_ROOT/usr/share/info/dir
186
paul15d74e92003-12-30 11:16:21 +0000187# install etc sources
paul69f5d262004-10-07 16:23:36 +0000188for daemon in %{daemon_list} %{daemonv6_list} %{daemon_other} ; do
paulda29c6b2004-10-08 00:49:09 +0000189 if [ x"${daemon}" != x"" ] ; then
190 install %{zeb_rh_src}/${daemon}.init \
191 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
192 fi
paul15d74e92003-12-30 11:16:21 +0000193done
194install -m644 %{zeb_rh_src}/quagga.pam \
195 $RPM_BUILD_ROOT/etc/pam.d/quagga
196install -m644 %{zeb_rh_src}/quagga.logrotate \
197 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
198install -m644 %{zeb_rh_src}/quagga.sysconfig \
199 $RPM_BUILD_ROOT/etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000200install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000201
202%pre
203# add vty_group
204%if %vty_group
205groupadd -r %vty_group 2> /dev/null || :
206%endif
paul6bd8fd32003-08-12 12:54:13 +0000207# add quagga user and group
208%if %quagga_user
paul15d74e92003-12-30 11:16:21 +0000209/usr/sbin/groupadd -g %quagga_gid quagga 2> /dev/null || :
210/usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
211 -M -r -s /sbin/nologin -c "Quagga routing suite" \
paul6bd8fd32003-08-12 12:54:13 +0000212 -d %_localstatedir %quagga_user 2> /dev/null || :
pauledd7c242003-06-04 13:59:38 +0000213%endif
paul788cdc62003-01-18 00:22:08 +0000214
paul788cdc62003-01-18 00:22:08 +0000215%post
paul30b9d892003-01-18 22:57:15 +0000216# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000217# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
218
219zebra_spec_add_service ()
220{
221 # Add port /etc/services entry if it isn't already there
paul6b637e92004-10-23 00:48:51 +0000222 if [ -f /etc/services ] && \
223 ! %__sed -e 's/#.*$//' /etc/services | %__grep -wq $1 ; then
paul788cdc62003-01-18 00:22:08 +0000224 echo "$1 $2 # $3" >> /etc/services
225 fi
226}
227
228zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
229zebra_spec_add_service zebra 2601/tcp "zebra vty"
230zebra_spec_add_service ripd 2602/tcp "RIPd vty"
paul54b25dc2004-09-30 04:56:26 +0000231%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000232zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
pauld7ccae22003-01-18 00:24:00 +0000233%endif
paul788cdc62003-01-18 00:22:08 +0000234zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
235zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
paul54b25dc2004-09-30 04:56:26 +0000236%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000237zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
pauld7ccae22003-01-18 00:24:00 +0000238%endif
paul54b25dc2004-09-30 04:56:26 +0000239%if %{with_ospfapi}
paul7021c422003-07-15 12:52:22 +0000240zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
241%endif
paul54b25dc2004-09-30 04:56:26 +0000242%if %{with_isisd}
jardin5a514b12003-12-23 10:50:21 +0000243zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000244%endif
paul788cdc62003-01-18 00:22:08 +0000245
paul15d74e92003-12-30 11:16:21 +0000246for daemon in %daemon_list ; do
247 /sbin/chkconfig --add ${daemon}
248done
paul788cdc62003-01-18 00:22:08 +0000249
paul6bd8fd32003-08-12 12:54:13 +0000250/sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000251
252# Create dummy files if they don't exist so basic functions can be used.
253if [ ! -e %{_sysconfdir}/zebra.conf ]; then
254 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
255 chmod 640 %{_sysconfdir}/zebra.conf
256fi
257if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
258 touch %{_sysconfdir}/vtysh.conf
259 chmod 640 %{_sysconfdir}/vtysh.conf
260fi
261
262%postun
263if [ "$1" -ge "1" ]; then
paul15d74e92003-12-30 11:16:21 +0000264 for daemon in %daemon_list ; do
265 /etc/rc.d/init.d/${daemon} condrestart >/dev/null 2>&1
266 done
paul788cdc62003-01-18 00:22:08 +0000267fi
paul788cdc62003-01-18 00:22:08 +0000268
269%preun
270if [ "$1" = "0" ]; then
paul15d74e92003-12-30 11:16:21 +0000271 for daemon in %daemon_list ; do
272 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
273 /sbin/chkconfig --del ${daemon}
274 done
275 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000276fi
277
278%clean
paulb5f310c2004-09-13 13:15:25 +0000279%if !%{keep_build}
280rm -rf $RPM_BUILD_ROOT
281%endif
paul788cdc62003-01-18 00:22:08 +0000282
283%files
284%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000285%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000286%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000287%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000288%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
paul54b25dc2004-09-30 04:56:26 +0000289%if %{quagga_user}
paul6bd8fd32003-08-12 12:54:13 +0000290%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
291%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
292%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000293%else
paul788cdc62003-01-18 00:22:08 +0000294%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000295%dir %attr(750,root,root) /var/log/quagga
paul788cdc62003-01-18 00:22:08 +0000296%dir %attr(755,root,root) /usr/share/info
paul6bd8fd32003-08-12 12:54:13 +0000297%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000298%endif
paul54b25dc2004-09-30 04:56:26 +0000299%if %{vty_group}
paul6bd8fd32003-08-12 12:54:13 +0000300%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000301%endif
paul788cdc62003-01-18 00:22:08 +0000302%{_infodir}/*info*
303%{_mandir}/man*/*
paul54b25dc2004-09-30 04:56:26 +0000304%{_sbindir}/zebra
305%{_sbindir}/ospfd
306%{_sbindir}/ripd
307%{_sbindir}/bgpd
308%if %{with_ipv6}
309%{_sbindir}/ripngd
310%{_sbindir}/ospf6d
311%endif
312%if %{with_isisd}
313%{_sbindir}/isisd
314%endif
paulcfc18422004-10-23 00:05:41 +0000315%dir %attr(755,root,root) %{_libdir}
paul28f79722004-10-29 05:35:43 +0000316%if %{with_shared}
paul2ff9e822004-07-20 11:19:47 +0000317%{_libdir}/lib*.so
318%{_libdir}/lib*.so.*
paul54b25dc2004-09-30 04:56:26 +0000319%endif
320%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000321%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000322%endif
paul6bd8fd32003-08-12 12:54:13 +0000323%config /etc/quagga/[!v]*
paul788cdc62003-01-18 00:22:08 +0000324%config /etc/rc.d/init.d/*
paul15d74e92003-12-30 11:16:21 +0000325%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000326%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000327%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
328
paul448ed4a2003-03-01 15:43:28 +0000329%files contrib
330%defattr(-,root,root)
331%doc tools
332
paule0626852003-03-18 14:11:36 +0000333%files devel
334%defattr(-,root,root)
paulda29c6b2004-10-08 00:49:09 +0000335%if %{with_ospfclient}
336%{_sbindir}/ospfclient
337%endif
paul28f79722004-10-29 05:35:43 +0000338%{_libdir}/*.a
339%{_libdir}/*.la
paulcfc18422004-10-23 00:05:41 +0000340%dir %attr(755,root,root) %{_includedir}/%{name}
paul28f79722004-10-29 05:35:43 +0000341%{_includedir}/%name/*.h
paulcfc18422004-10-23 00:05:41 +0000342%dir %attr(755,root,root) %{_includedir}/%{name}/ospfd
paul28f79722004-10-29 05:35:43 +0000343%{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000344%if %{with_ospfapi}
paulcfc18422004-10-23 00:05:41 +0000345%dir %attr(755,root,root) %{_includedir}/%{name}/ospfapi
paul28f79722004-10-29 05:35:43 +0000346%{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000347%endif
paule0626852003-03-18 14:11:36 +0000348
paul788cdc62003-01-18 00:22:08 +0000349%changelog
paul15d74e92003-12-30 11:16:21 +0000350%changelog
paul36002ae2004-11-08 17:36:29 +0000351* Mon Nov 08 2004 Paul Jakma <paul@dishone.st>
352- Use makeinfo --html to generate quagga.html
353
paul0df63b52004-11-07 22:12:23 +0000354* Sun Nov 07 2004 Paul Jakma <paul@dishone.st>
355- Fix with_ipv6 set to 0 build
356
paulcfc18422004-10-23 00:05:41 +0000357* Sat Oct 23 2004 Paul Jakma <paul@dishone.st>
358- Update to 0.97.2
359
360* Sat Oct 23 2004 Andrew J. Schorr <aschorr@telemetry-investments.com>
361- Make directories be owned by the packages concerned
362- Update logrotate scripts to use correct path to killall and use pid files
363
paulda29c6b2004-10-08 00:49:09 +0000364* Fri Oct 08 2004 Paul Jakma <paul@dishone.st>
365- Update to 0.97.0
366
paul54b25dc2004-09-30 04:56:26 +0000367* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
368- build snmp support by default
369- build irdp support
370- build with shared libs
371- devel subpackage for archives and headers
372
paul00bc5602004-01-09 16:30:52 +0000373* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
374- updated sysconfig files to specify local dir
375- added ospf_dump.c crash quick fix patch
376- added ospfd persistent interface configuration patch
377
paul15d74e92003-12-30 11:16:21 +0000378* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
379- sync to CVS
380- integrate RH sysconfig patch to specify daemon options (RH)
381- default to have vty listen only to 127.1 (RH)
382- add user with fixed UID/GID (RH)
383- create user with shell /sbin/nologin rather than /bin/false (RH)
384- stop daemons on uninstall (RH)
385- delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
386- isisd added
387- cleanup tasks carried out for every daemon
388
paul406f7002003-11-02 07:30:52 +0000389* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
390- Fix -devel package to include all files
391- Sync to 0.96.4
392
paul6bd8fd32003-08-12 12:54:13 +0000393* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
394- Renamed to Quagga
395- Sync to Quagga release 0.96
396
pauledd7c242003-06-04 13:59:38 +0000397* Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
398- zebra privileges support
399
paule0626852003-03-18 14:11:36 +0000400* Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
401- Fix mem leak in 'show thread cpu'
402- Ralph Keller's OSPF-API
403- Amir: Fix configure.ac for net-snmp
404
paul448ed4a2003-03-01 15:43:28 +0000405* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
406- ospfd IOS prefix to interface matching for 'network' statement
407- temporary fix for PtP and IPv6
408- sync to zebra.org CVS
409
paul8f754982003-01-20 04:55:51 +0000410* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
411- update to latest cvs
412- Yon's "show thread cpu" patch - 17217
413- walk up tree - 17218
414- ospfd NSSA fixes - 16681
415- ospfd nsm fixes - 16824
416- ospfd OLSA fixes and new feature - 16823
417- KAME and ifindex fixes - 16525
418- spec file changes to allow redhat files to be in tree
419
pauld7ccae22003-01-18 00:24:00 +0000420* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
421- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
422- Fixed up some build requirements (patch)
423- Added conditional build requirements for vtysh / snmp
424- Added conditional to %files for %_bindir depending on vtysh
425
paul788cdc62003-01-18 00:22:08 +0000426* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
427- update to latest CVS
428- add Greg Troxel's md5 buffer copy/dup fix
429- add RIPv1 fix
430- add Frank's multicast flag fix
431
432* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
433- update to latest CVS
434- timestamped crypt_seqnum patch
435- oi->on_write_q fix
436
437* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
438- update to latest CVS
439- add vtysh 'write-config (integrated|daemon)' patch
440- always 'make rebuild' in vtysh/ to catch new commands
441
442* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
443- update to 0.93b
444
445* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
446- update to latest CVS
447- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
448
449* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
450- update to current CVS
451- add OSPF point to multipoint patch
452- add OSPF bugfixes
453- add BGP hash optimisation patch
454
455* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
456- update to 0.93-pre1 / CVS
457- add link state detection support
458- add generic PtP and RFC3021 support
459- various bug fixes
460
461* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
462- Fix bug #51336
463
464* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
465- Use generic initscript strings instead of initscript specific
466 ( "Starting foo: " -> "Starting $prog:" )
467
468* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
469- Bump the release when rebuilding into the dist.
470
471* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
472- built for Powertools
473
474* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
475- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
476- Update to 0.91a
477- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
478- Should be quite Red Hat'isque now.