blob: 09683de3d3a9a240123c2e2f45c0d4505f1f6d13 [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
ajs7966b972004-11-10 22:02:05 +0000109
110# For standard gcc verbosity, uncomment these lines:
111#CFLAGS="%{optflags} -Wall -Wsign-compare -Wpointer-arith"
112#CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
113
114# For ultra gcc verbosity, uncomment these lines also:
115#CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
116#CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
117#CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
118#CFLAGS="${CFLAGS} -Wpacked -Wpadded"
119
paul788cdc62003-01-18 00:22:08 +0000120%configure \
paul54b25dc2004-09-30 04:56:26 +0000121%if !%{with_shared}
122 --disable-shared \
123%endif
124%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000125 --enable-ipv6 \
126%endif
paul54b25dc2004-09-30 04:56:26 +0000127%if %{with_snmp}
paul788cdc62003-01-18 00:22:08 +0000128 --enable-snmp \
129%endif
paul54b25dc2004-09-30 04:56:26 +0000130%if %{with_multipath}
131 --enable-multipath=%{with_multipath} \
paul788cdc62003-01-18 00:22:08 +0000132%endif
paul54b25dc2004-09-30 04:56:26 +0000133%if %{with_tcp_zebra}
paul788cdc62003-01-18 00:22:08 +0000134 --enable-tcp-zebra \
135%endif
paul54b25dc2004-09-30 04:56:26 +0000136%if %{with_nssa}
paul788cdc62003-01-18 00:22:08 +0000137 --enable-nssa \
138%endif
paul54b25dc2004-09-30 04:56:26 +0000139%if %{with_opaque_lsa}
paul788cdc62003-01-18 00:22:08 +0000140 --enable-opaque-lsa \
141%endif
paul54b25dc2004-09-30 04:56:26 +0000142%if %{with_ospf_te}
paul788cdc62003-01-18 00:22:08 +0000143 --enable-ospf-te \
144%endif
paul54b25dc2004-09-30 04:56:26 +0000145%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000146 --enable-vtysh \
147%endif
paul54b25dc2004-09-30 04:56:26 +0000148%if %{with_ospfclient}
paul68980082003-03-25 05:07:42 +0000149 --enable-ospfclient=yes \
150%else
151 --enable-ospfclient=no\
152%endif
paul54b25dc2004-09-30 04:56:26 +0000153%if %{with_ospfapi}
paul68980082003-03-25 05:07:42 +0000154 --enable-ospfapi=yes \
155%else
156 --enable-ospfapi=no \
157%endif
paul54b25dc2004-09-30 04:56:26 +0000158%if %{with_irdp}
paul5b819262004-07-28 14:11:55 +0000159 --enable-irdp=yes \
160%else
161 --enable-irdp=no \
162%endif
paul54b25dc2004-09-30 04:56:26 +0000163%if %{with_isisd}
164 --enable-isisd \
165%else
paul69f5d262004-10-07 16:23:36 +0000166 --disable-isisd \
paul54b25dc2004-09-30 04:56:26 +0000167%endif
168%if %{with_pam}
pauledd7c242003-06-04 13:59:38 +0000169 --with-libpam \
paul788cdc62003-01-18 00:22:08 +0000170%endif
paul6bd8fd32003-08-12 12:54:13 +0000171%if %quagga_user
172 --enable-user=%quagga_user \
173 --enable-group=%quagga_user \
pauledd7c242003-06-04 13:59:38 +0000174%endif
175%if %vty_group
176 --enable-vty-group=%vty_group \
177%endif
pauledd7c242003-06-04 13:59:38 +0000178--enable-netlink
paul788cdc62003-01-18 00:22:08 +0000179
180make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
181
182pushd doc
paul36002ae2004-11-08 17:36:29 +0000183makeinfo --no-split --html -o quagga.html quagga.texi
paul788cdc62003-01-18 00:22:08 +0000184popd
185
186%install
187rm -rf $RPM_BUILD_ROOT
188
189install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \
paul6bd8fd32003-08-12 12:54:13 +0000190 $RPM_BUILD_ROOT/var/log/quagga $RPM_BUILD_ROOT%{_infodir}
paul788cdc62003-01-18 00:22:08 +0000191
192make install \
193 DESTDIR=$RPM_BUILD_ROOT
194
paul9a344b72003-08-05 23:24:58 +0000195# Remove this file, as it is uninstalled and causes errors when building on RH9
196rm -rf $RPM_BUILD_ROOT/usr/share/info/dir
197
paul15d74e92003-12-30 11:16:21 +0000198# install etc sources
paul69f5d262004-10-07 16:23:36 +0000199for daemon in %{daemon_list} %{daemonv6_list} %{daemon_other} ; do
paulda29c6b2004-10-08 00:49:09 +0000200 if [ x"${daemon}" != x"" ] ; then
201 install %{zeb_rh_src}/${daemon}.init \
202 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
203 fi
paul15d74e92003-12-30 11:16:21 +0000204done
205install -m644 %{zeb_rh_src}/quagga.pam \
206 $RPM_BUILD_ROOT/etc/pam.d/quagga
207install -m644 %{zeb_rh_src}/quagga.logrotate \
208 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
209install -m644 %{zeb_rh_src}/quagga.sysconfig \
210 $RPM_BUILD_ROOT/etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000211install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000212
213%pre
214# add vty_group
215%if %vty_group
216groupadd -r %vty_group 2> /dev/null || :
217%endif
paul6bd8fd32003-08-12 12:54:13 +0000218# add quagga user and group
219%if %quagga_user
paul15d74e92003-12-30 11:16:21 +0000220/usr/sbin/groupadd -g %quagga_gid quagga 2> /dev/null || :
221/usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
222 -M -r -s /sbin/nologin -c "Quagga routing suite" \
paul6bd8fd32003-08-12 12:54:13 +0000223 -d %_localstatedir %quagga_user 2> /dev/null || :
pauledd7c242003-06-04 13:59:38 +0000224%endif
paul788cdc62003-01-18 00:22:08 +0000225
paul788cdc62003-01-18 00:22:08 +0000226%post
paul30b9d892003-01-18 22:57:15 +0000227# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000228# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
229
230zebra_spec_add_service ()
231{
232 # Add port /etc/services entry if it isn't already there
paul6b637e92004-10-23 00:48:51 +0000233 if [ -f /etc/services ] && \
234 ! %__sed -e 's/#.*$//' /etc/services | %__grep -wq $1 ; then
paul788cdc62003-01-18 00:22:08 +0000235 echo "$1 $2 # $3" >> /etc/services
236 fi
237}
238
239zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
240zebra_spec_add_service zebra 2601/tcp "zebra vty"
241zebra_spec_add_service ripd 2602/tcp "RIPd vty"
paul54b25dc2004-09-30 04:56:26 +0000242%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000243zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
pauld7ccae22003-01-18 00:24:00 +0000244%endif
paul788cdc62003-01-18 00:22:08 +0000245zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
246zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
paul54b25dc2004-09-30 04:56:26 +0000247%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000248zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
pauld7ccae22003-01-18 00:24:00 +0000249%endif
paul54b25dc2004-09-30 04:56:26 +0000250%if %{with_ospfapi}
paul7021c422003-07-15 12:52:22 +0000251zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
252%endif
paul54b25dc2004-09-30 04:56:26 +0000253%if %{with_isisd}
jardin5a514b12003-12-23 10:50:21 +0000254zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000255%endif
paul788cdc62003-01-18 00:22:08 +0000256
paul15d74e92003-12-30 11:16:21 +0000257for daemon in %daemon_list ; do
258 /sbin/chkconfig --add ${daemon}
259done
paul788cdc62003-01-18 00:22:08 +0000260
paul6bd8fd32003-08-12 12:54:13 +0000261/sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000262
263# Create dummy files if they don't exist so basic functions can be used.
264if [ ! -e %{_sysconfdir}/zebra.conf ]; then
265 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
266 chmod 640 %{_sysconfdir}/zebra.conf
267fi
268if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
269 touch %{_sysconfdir}/vtysh.conf
270 chmod 640 %{_sysconfdir}/vtysh.conf
271fi
272
273%postun
274if [ "$1" -ge "1" ]; then
paul15d74e92003-12-30 11:16:21 +0000275 for daemon in %daemon_list ; do
276 /etc/rc.d/init.d/${daemon} condrestart >/dev/null 2>&1
277 done
paul788cdc62003-01-18 00:22:08 +0000278fi
paul788cdc62003-01-18 00:22:08 +0000279
280%preun
281if [ "$1" = "0" ]; then
paul15d74e92003-12-30 11:16:21 +0000282 for daemon in %daemon_list ; do
283 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
284 /sbin/chkconfig --del ${daemon}
285 done
286 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000287fi
288
289%clean
paulb5f310c2004-09-13 13:15:25 +0000290%if !%{keep_build}
291rm -rf $RPM_BUILD_ROOT
292%endif
paul788cdc62003-01-18 00:22:08 +0000293
294%files
295%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000296%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000297%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000298%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000299%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
paul54b25dc2004-09-30 04:56:26 +0000300%if %{quagga_user}
paul6bd8fd32003-08-12 12:54:13 +0000301%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
302%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
303%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000304%else
paul788cdc62003-01-18 00:22:08 +0000305%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000306%dir %attr(750,root,root) /var/log/quagga
paul788cdc62003-01-18 00:22:08 +0000307%dir %attr(755,root,root) /usr/share/info
paul6bd8fd32003-08-12 12:54:13 +0000308%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000309%endif
paul54b25dc2004-09-30 04:56:26 +0000310%if %{vty_group}
paul6bd8fd32003-08-12 12:54:13 +0000311%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000312%endif
paul788cdc62003-01-18 00:22:08 +0000313%{_infodir}/*info*
314%{_mandir}/man*/*
paul54b25dc2004-09-30 04:56:26 +0000315%{_sbindir}/zebra
316%{_sbindir}/ospfd
317%{_sbindir}/ripd
318%{_sbindir}/bgpd
319%if %{with_ipv6}
320%{_sbindir}/ripngd
321%{_sbindir}/ospf6d
322%endif
323%if %{with_isisd}
324%{_sbindir}/isisd
325%endif
paulcfc18422004-10-23 00:05:41 +0000326%dir %attr(755,root,root) %{_libdir}
paul28f79722004-10-29 05:35:43 +0000327%if %{with_shared}
paul2ff9e822004-07-20 11:19:47 +0000328%{_libdir}/lib*.so
329%{_libdir}/lib*.so.*
paul54b25dc2004-09-30 04:56:26 +0000330%endif
331%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000332%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000333%endif
paul6bd8fd32003-08-12 12:54:13 +0000334%config /etc/quagga/[!v]*
paul788cdc62003-01-18 00:22:08 +0000335%config /etc/rc.d/init.d/*
paul15d74e92003-12-30 11:16:21 +0000336%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000337%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000338%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
339
paul448ed4a2003-03-01 15:43:28 +0000340%files contrib
341%defattr(-,root,root)
342%doc tools
343
paule0626852003-03-18 14:11:36 +0000344%files devel
345%defattr(-,root,root)
paulda29c6b2004-10-08 00:49:09 +0000346%if %{with_ospfclient}
347%{_sbindir}/ospfclient
348%endif
paul28f79722004-10-29 05:35:43 +0000349%{_libdir}/*.a
350%{_libdir}/*.la
paulcfc18422004-10-23 00:05:41 +0000351%dir %attr(755,root,root) %{_includedir}/%{name}
paul28f79722004-10-29 05:35:43 +0000352%{_includedir}/%name/*.h
paulcfc18422004-10-23 00:05:41 +0000353%dir %attr(755,root,root) %{_includedir}/%{name}/ospfd
paul28f79722004-10-29 05:35:43 +0000354%{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000355%if %{with_ospfapi}
paulcfc18422004-10-23 00:05:41 +0000356%dir %attr(755,root,root) %{_includedir}/%{name}/ospfapi
paul28f79722004-10-29 05:35:43 +0000357%{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000358%endif
paule0626852003-03-18 14:11:36 +0000359
paul788cdc62003-01-18 00:22:08 +0000360%changelog
paul15d74e92003-12-30 11:16:21 +0000361%changelog
paul36002ae2004-11-08 17:36:29 +0000362* Mon Nov 08 2004 Paul Jakma <paul@dishone.st>
363- Use makeinfo --html to generate quagga.html
364
paul0df63b52004-11-07 22:12:23 +0000365* Sun Nov 07 2004 Paul Jakma <paul@dishone.st>
366- Fix with_ipv6 set to 0 build
367
paulcfc18422004-10-23 00:05:41 +0000368* Sat Oct 23 2004 Paul Jakma <paul@dishone.st>
369- Update to 0.97.2
370
371* Sat Oct 23 2004 Andrew J. Schorr <aschorr@telemetry-investments.com>
372- Make directories be owned by the packages concerned
373- Update logrotate scripts to use correct path to killall and use pid files
374
paulda29c6b2004-10-08 00:49:09 +0000375* Fri Oct 08 2004 Paul Jakma <paul@dishone.st>
376- Update to 0.97.0
377
paul54b25dc2004-09-30 04:56:26 +0000378* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
379- build snmp support by default
380- build irdp support
381- build with shared libs
382- devel subpackage for archives and headers
383
paul00bc5602004-01-09 16:30:52 +0000384* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
385- updated sysconfig files to specify local dir
386- added ospf_dump.c crash quick fix patch
387- added ospfd persistent interface configuration patch
388
paul15d74e92003-12-30 11:16:21 +0000389* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
390- sync to CVS
391- integrate RH sysconfig patch to specify daemon options (RH)
392- default to have vty listen only to 127.1 (RH)
393- add user with fixed UID/GID (RH)
394- create user with shell /sbin/nologin rather than /bin/false (RH)
395- stop daemons on uninstall (RH)
396- delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
397- isisd added
398- cleanup tasks carried out for every daemon
399
paul406f7002003-11-02 07:30:52 +0000400* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
401- Fix -devel package to include all files
402- Sync to 0.96.4
403
paul6bd8fd32003-08-12 12:54:13 +0000404* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
405- Renamed to Quagga
406- Sync to Quagga release 0.96
407
pauledd7c242003-06-04 13:59:38 +0000408* Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
409- zebra privileges support
410
paule0626852003-03-18 14:11:36 +0000411* Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
412- Fix mem leak in 'show thread cpu'
413- Ralph Keller's OSPF-API
414- Amir: Fix configure.ac for net-snmp
415
paul448ed4a2003-03-01 15:43:28 +0000416* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
417- ospfd IOS prefix to interface matching for 'network' statement
418- temporary fix for PtP and IPv6
419- sync to zebra.org CVS
420
paul8f754982003-01-20 04:55:51 +0000421* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
422- update to latest cvs
423- Yon's "show thread cpu" patch - 17217
424- walk up tree - 17218
425- ospfd NSSA fixes - 16681
426- ospfd nsm fixes - 16824
427- ospfd OLSA fixes and new feature - 16823
428- KAME and ifindex fixes - 16525
429- spec file changes to allow redhat files to be in tree
430
pauld7ccae22003-01-18 00:24:00 +0000431* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
432- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
433- Fixed up some build requirements (patch)
434- Added conditional build requirements for vtysh / snmp
435- Added conditional to %files for %_bindir depending on vtysh
436
paul788cdc62003-01-18 00:22:08 +0000437* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
438- update to latest CVS
439- add Greg Troxel's md5 buffer copy/dup fix
440- add RIPv1 fix
441- add Frank's multicast flag fix
442
443* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
444- update to latest CVS
445- timestamped crypt_seqnum patch
446- oi->on_write_q fix
447
448* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
449- update to latest CVS
450- add vtysh 'write-config (integrated|daemon)' patch
451- always 'make rebuild' in vtysh/ to catch new commands
452
453* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
454- update to 0.93b
455
456* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
457- update to latest CVS
458- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
459
460* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
461- update to current CVS
462- add OSPF point to multipoint patch
463- add OSPF bugfixes
464- add BGP hash optimisation patch
465
466* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
467- update to 0.93-pre1 / CVS
468- add link state detection support
469- add generic PtP and RFC3021 support
470- various bug fixes
471
472* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
473- Fix bug #51336
474
475* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
476- Use generic initscript strings instead of initscript specific
477 ( "Starting foo: " -> "Starting $prog:" )
478
479* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
480- Bump the release when rebuilding into the dist.
481
482* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
483- built for Powertools
484
485* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
486- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
487- Update to 0.91a
488- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
489- Should be quite Red Hat'isque now.