blob: 11c6fe19646f271dee8f7b0ad93decdeab6928b1 [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
paulda29c6b2004-10-08 00:49:09 +000013%define with_irdp 0
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
paulda29c6b2004-10-08 00:49:09 +0000185 if [ x"${daemon}" != x"" ] ; then
186 install %{zeb_rh_src}/${daemon}.init \
187 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
188 fi
paul15d74e92003-12-30 11:16:21 +0000189done
190install -m644 %{zeb_rh_src}/quagga.pam \
191 $RPM_BUILD_ROOT/etc/pam.d/quagga
192install -m644 %{zeb_rh_src}/quagga.logrotate \
193 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
194install -m644 %{zeb_rh_src}/quagga.sysconfig \
195 $RPM_BUILD_ROOT/etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000196install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000197
198%pre
199# add vty_group
200%if %vty_group
201groupadd -r %vty_group 2> /dev/null || :
202%endif
paul6bd8fd32003-08-12 12:54:13 +0000203# add quagga user and group
204%if %quagga_user
paul15d74e92003-12-30 11:16:21 +0000205/usr/sbin/groupadd -g %quagga_gid quagga 2> /dev/null || :
206/usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
207 -M -r -s /sbin/nologin -c "Quagga routing suite" \
paul6bd8fd32003-08-12 12:54:13 +0000208 -d %_localstatedir %quagga_user 2> /dev/null || :
pauledd7c242003-06-04 13:59:38 +0000209%endif
paul788cdc62003-01-18 00:22:08 +0000210
paul788cdc62003-01-18 00:22:08 +0000211%post
paul30b9d892003-01-18 22:57:15 +0000212# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000213# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
214
215zebra_spec_add_service ()
216{
217 # Add port /etc/services entry if it isn't already there
218 if [ -f /etc/services ] && ! grep -q "^$1[^a-zA-Z0-9]" /etc/services ; then
219 echo "$1 $2 # $3" >> /etc/services
220 fi
221}
222
223zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
224zebra_spec_add_service zebra 2601/tcp "zebra vty"
225zebra_spec_add_service ripd 2602/tcp "RIPd vty"
paul54b25dc2004-09-30 04:56:26 +0000226%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000227zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
pauld7ccae22003-01-18 00:24:00 +0000228%endif
paul788cdc62003-01-18 00:22:08 +0000229zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
230zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
paul54b25dc2004-09-30 04:56:26 +0000231%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000232zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
pauld7ccae22003-01-18 00:24:00 +0000233%endif
paul54b25dc2004-09-30 04:56:26 +0000234%if %{with_ospfapi}
paul7021c422003-07-15 12:52:22 +0000235zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
236%endif
paul54b25dc2004-09-30 04:56:26 +0000237%if %{with_isisd}
jardin5a514b12003-12-23 10:50:21 +0000238zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000239%endif
paul788cdc62003-01-18 00:22:08 +0000240
paul15d74e92003-12-30 11:16:21 +0000241for daemon in %daemon_list ; do
242 /sbin/chkconfig --add ${daemon}
243done
paul788cdc62003-01-18 00:22:08 +0000244
paul6bd8fd32003-08-12 12:54:13 +0000245/sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000246
247# Create dummy files if they don't exist so basic functions can be used.
248if [ ! -e %{_sysconfdir}/zebra.conf ]; then
249 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
250 chmod 640 %{_sysconfdir}/zebra.conf
251fi
252if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
253 touch %{_sysconfdir}/vtysh.conf
254 chmod 640 %{_sysconfdir}/vtysh.conf
255fi
256
257%postun
258if [ "$1" -ge "1" ]; then
paul15d74e92003-12-30 11:16:21 +0000259 for daemon in %daemon_list ; do
260 /etc/rc.d/init.d/${daemon} condrestart >/dev/null 2>&1
261 done
paul788cdc62003-01-18 00:22:08 +0000262fi
paul788cdc62003-01-18 00:22:08 +0000263
264%preun
265if [ "$1" = "0" ]; then
paul15d74e92003-12-30 11:16:21 +0000266 for daemon in %daemon_list ; do
267 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
268 /sbin/chkconfig --del ${daemon}
269 done
270 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000271fi
272
273%clean
paulb5f310c2004-09-13 13:15:25 +0000274%if !%{keep_build}
275rm -rf $RPM_BUILD_ROOT
276%endif
paul788cdc62003-01-18 00:22:08 +0000277
278%files
279%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000280%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000281%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000282%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000283%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
paul54b25dc2004-09-30 04:56:26 +0000284%if %{quagga_user}
paul6bd8fd32003-08-12 12:54:13 +0000285%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
286%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
287%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000288%else
paul788cdc62003-01-18 00:22:08 +0000289%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000290%dir %attr(750,root,root) /var/log/quagga
paul788cdc62003-01-18 00:22:08 +0000291%dir %attr(755,root,root) /usr/share/info
paul6bd8fd32003-08-12 12:54:13 +0000292%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000293%endif
paul54b25dc2004-09-30 04:56:26 +0000294%if %{vty_group}
paul6bd8fd32003-08-12 12:54:13 +0000295%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000296%endif
paul788cdc62003-01-18 00:22:08 +0000297%{_infodir}/*info*
298%{_mandir}/man*/*
paul54b25dc2004-09-30 04:56:26 +0000299%{_sbindir}/zebra
300%{_sbindir}/ospfd
301%{_sbindir}/ripd
302%{_sbindir}/bgpd
303%if %{with_ipv6}
304%{_sbindir}/ripngd
305%{_sbindir}/ospf6d
306%endif
307%if %{with_isisd}
308%{_sbindir}/isisd
309%endif
310%if %{with_shared}
paul2ff9e822004-07-20 11:19:47 +0000311%{_libdir}/lib*.so
312%{_libdir}/lib*.so.*
paul54b25dc2004-09-30 04:56:26 +0000313%endif
314%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000315%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000316%endif
paul6bd8fd32003-08-12 12:54:13 +0000317%config /etc/quagga/[!v]*
paul788cdc62003-01-18 00:22:08 +0000318%config /etc/rc.d/init.d/*
paul15d74e92003-12-30 11:16:21 +0000319%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000320%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000321%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
322
paul448ed4a2003-03-01 15:43:28 +0000323%files contrib
324%defattr(-,root,root)
325%doc tools
326
paule0626852003-03-18 14:11:36 +0000327%files devel
328%defattr(-,root,root)
paulda29c6b2004-10-08 00:49:09 +0000329%if %{with_ospfclient}
330%{_sbindir}/ospfclient
331%endif
paul2ff9e822004-07-20 11:19:47 +0000332%dir %{_libdir}/*.a
333%dir %{_libdir}/*.la
paul15d74e92003-12-30 11:16:21 +0000334%dir %{_includedir}/%name/*.h
335%dir %{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000336%if %{with_ospfapi}
paul15d74e92003-12-30 11:16:21 +0000337%dir %{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000338%endif
paule0626852003-03-18 14:11:36 +0000339
paul788cdc62003-01-18 00:22:08 +0000340%changelog
paul15d74e92003-12-30 11:16:21 +0000341%changelog
paulda29c6b2004-10-08 00:49:09 +0000342* Fri Oct 08 2004 Paul Jakma <paul@dishone.st>
343- Update to 0.97.0
344
paul54b25dc2004-09-30 04:56:26 +0000345* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
346- build snmp support by default
347- build irdp support
348- build with shared libs
349- devel subpackage for archives and headers
350
paul00bc5602004-01-09 16:30:52 +0000351* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
352- updated sysconfig files to specify local dir
353- added ospf_dump.c crash quick fix patch
354- added ospfd persistent interface configuration patch
355
paul15d74e92003-12-30 11:16:21 +0000356* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
357- sync to CVS
358- integrate RH sysconfig patch to specify daemon options (RH)
359- default to have vty listen only to 127.1 (RH)
360- add user with fixed UID/GID (RH)
361- create user with shell /sbin/nologin rather than /bin/false (RH)
362- stop daemons on uninstall (RH)
363- delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
364- isisd added
365- cleanup tasks carried out for every daemon
366
paul406f7002003-11-02 07:30:52 +0000367* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
368- Fix -devel package to include all files
369- Sync to 0.96.4
370
paul6bd8fd32003-08-12 12:54:13 +0000371* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
372- Renamed to Quagga
373- Sync to Quagga release 0.96
374
pauledd7c242003-06-04 13:59:38 +0000375* Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
376- zebra privileges support
377
paule0626852003-03-18 14:11:36 +0000378* Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
379- Fix mem leak in 'show thread cpu'
380- Ralph Keller's OSPF-API
381- Amir: Fix configure.ac for net-snmp
382
paul448ed4a2003-03-01 15:43:28 +0000383* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
384- ospfd IOS prefix to interface matching for 'network' statement
385- temporary fix for PtP and IPv6
386- sync to zebra.org CVS
387
paul8f754982003-01-20 04:55:51 +0000388* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
389- update to latest cvs
390- Yon's "show thread cpu" patch - 17217
391- walk up tree - 17218
392- ospfd NSSA fixes - 16681
393- ospfd nsm fixes - 16824
394- ospfd OLSA fixes and new feature - 16823
395- KAME and ifindex fixes - 16525
396- spec file changes to allow redhat files to be in tree
397
pauld7ccae22003-01-18 00:24:00 +0000398* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
399- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
400- Fixed up some build requirements (patch)
401- Added conditional build requirements for vtysh / snmp
402- Added conditional to %files for %_bindir depending on vtysh
403
paul788cdc62003-01-18 00:22:08 +0000404* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
405- update to latest CVS
406- add Greg Troxel's md5 buffer copy/dup fix
407- add RIPv1 fix
408- add Frank's multicast flag fix
409
410* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
411- update to latest CVS
412- timestamped crypt_seqnum patch
413- oi->on_write_q fix
414
415* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
416- update to latest CVS
417- add vtysh 'write-config (integrated|daemon)' patch
418- always 'make rebuild' in vtysh/ to catch new commands
419
420* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
421- update to 0.93b
422
423* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
424- update to latest CVS
425- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
426
427* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
428- update to current CVS
429- add OSPF point to multipoint patch
430- add OSPF bugfixes
431- add BGP hash optimisation patch
432
433* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
434- update to 0.93-pre1 / CVS
435- add link state detection support
436- add generic PtP and RFC3021 support
437- various bug fixes
438
439* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
440- Fix bug #51336
441
442* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
443- Use generic initscript strings instead of initscript specific
444 ( "Starting foo: " -> "Starting $prog:" )
445
446* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
447- Bump the release when rebuilding into the dist.
448
449* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
450- built for Powertools
451
452* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
453- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
454- Update to 0.91a
455- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
456- Should be quite Red Hat'isque now.