blob: 24e3cb071400021017372df530b8bbbe03120380 [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}
37%define daemon_list %{daemon_list} ripngd ospf6d
38%endif
39%if %{with_isisd}
40%define daemon_list %{daemon_list} isisd
paul15d74e92003-12-30 11:16:21 +000041%endif
42
paulb5f310c2004-09-13 13:15:25 +000043# allow build dir to be kept
44%define keep_build 0
45
paul788cdc62003-01-18 00:22:08 +000046Summary: Routing daemon
paul6bd8fd32003-08-12 12:54:13 +000047Name: quagga
paul6382b6f2003-05-20 00:17:45 +000048Version: @VERSION@
pauledd7c242003-06-04 13:59:38 +000049Release: @CONFDATE@01
paul788cdc62003-01-18 00:22:08 +000050License: GPL
51Group: System Environment/Daemons
paul6bd8fd32003-08-12 12:54:13 +000052Source0: http://www.quagga.net/snapshots/cvs/%{name}-%{version}.tar.gz
53URL: http://www.quagga.net
paul54b25dc2004-09-30 04:56:26 +000054%if %{with_snmp}
paulb63cef72004-08-19 03:36:13 +000055BuildRequires: net-snmp-devel
56Prereq: net-snmp
paul788cdc62003-01-18 00:22:08 +000057%endif
paul54b25dc2004-09-30 04:56:26 +000058%if %{with_vtysh}
paul30b9d892003-01-18 22:57:15 +000059BuildRequires: readline readline-devel ncurses ncurses-devel
pauld7ccae22003-01-18 00:24:00 +000060Prereq: readline ncurses
61%endif
paul15d74e92003-12-30 11:16:21 +000062BuildRequires: texinfo tetex autoconf pam-devel patch libcap-devel
paul788cdc62003-01-18 00:22:08 +000063# Initscripts > 5.60 is required for IPv6 support
paul30b9d892003-01-18 22:57:15 +000064Prereq: initscripts >= 5.60
paul45315b52003-08-14 05:23:50 +000065Prereq: ncurses readline pam
paul788cdc62003-01-18 00:22:08 +000066Prereq: /sbin/install-info
67Provides: routingdaemon
68BuildRoot: %{_tmppath}/%{name}-%{version}-root
paul6bd8fd32003-08-12 12:54:13 +000069Obsoletes: bird gated mrt zebra
paul788cdc62003-01-18 00:22:08 +000070
71%description
paul6bd8fd32003-08-12 12:54:13 +000072Quagga is a free software that manages TCP/IP based routing
paul788cdc62003-01-18 00:22:08 +000073protocol. It takes multi-server and multi-thread approach to resolve
74the current complexity of the Internet.
75
paul6bd8fd32003-08-12 12:54:13 +000076Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng.
paul788cdc62003-01-18 00:22:08 +000077
paul6bd8fd32003-08-12 12:54:13 +000078Quagga is intended to be used as a Route Server and a Route Reflector. It is
79not a toolkit, it provides full routing power under a new architecture.
80Quagga by design has a process for each protocol.
81
82Quagga is a fork of GNU Zebra.
paul788cdc62003-01-18 00:22:08 +000083
paul448ed4a2003-03-01 15:43:28 +000084%package contrib
paul6bd8fd32003-08-12 12:54:13 +000085Summary: contrib tools for quagga
paul448ed4a2003-03-01 15:43:28 +000086Group: System Environment/Daemons
87
88%description contrib
paul6bd8fd32003-08-12 12:54:13 +000089Contributed/3rd party tools which may be of use with quagga.
paul448ed4a2003-03-01 15:43:28 +000090
paule0626852003-03-18 14:11:36 +000091%package devel
paul6bd8fd32003-08-12 12:54:13 +000092Summary: Header and object files for quagga development
paule0626852003-03-18 14:11:36 +000093Group: System Environment/Daemons
94
95%description devel
paul6bd8fd32003-08-12 12:54:13 +000096The quagga-devel package contains the header and object files neccessary for
97developing OSPF-API and quagga applications.
paule0626852003-03-18 14:11:36 +000098
paul788cdc62003-01-18 00:22:08 +000099%prep
100%setup -q
paul788cdc62003-01-18 00:22:08 +0000101
102%build
103%configure \
paul54b25dc2004-09-30 04:56:26 +0000104%if !%{with_shared}
105 --disable-shared \
106%endif
107%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000108 --enable-ipv6 \
109%endif
paul54b25dc2004-09-30 04:56:26 +0000110%if %{with_snmp}
paul788cdc62003-01-18 00:22:08 +0000111 --enable-snmp \
112%endif
paul54b25dc2004-09-30 04:56:26 +0000113%if %{with_multipath}
114 --enable-multipath=%{with_multipath} \
paul788cdc62003-01-18 00:22:08 +0000115%endif
paul54b25dc2004-09-30 04:56:26 +0000116%if %{with_tcp_zebra}
paul788cdc62003-01-18 00:22:08 +0000117 --enable-tcp-zebra \
118%endif
paul54b25dc2004-09-30 04:56:26 +0000119%if %{with_nssa}
paul788cdc62003-01-18 00:22:08 +0000120 --enable-nssa \
121%endif
paul54b25dc2004-09-30 04:56:26 +0000122%if %{with_opaque_lsa}
paul788cdc62003-01-18 00:22:08 +0000123 --enable-opaque-lsa \
124%endif
paul54b25dc2004-09-30 04:56:26 +0000125%if %{with_ospf_te}
paul788cdc62003-01-18 00:22:08 +0000126 --enable-ospf-te \
127%endif
paul54b25dc2004-09-30 04:56:26 +0000128%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000129 --enable-vtysh \
130%endif
paul54b25dc2004-09-30 04:56:26 +0000131%if %{with_ospfclient}
paul68980082003-03-25 05:07:42 +0000132 --enable-ospfclient=yes \
133%else
134 --enable-ospfclient=no\
135%endif
paul54b25dc2004-09-30 04:56:26 +0000136%if %{with_ospfapi}
paul68980082003-03-25 05:07:42 +0000137 --enable-ospfapi=yes \
138%else
139 --enable-ospfapi=no \
140%endif
paul54b25dc2004-09-30 04:56:26 +0000141%if %{with_irdp}
paul5b819262004-07-28 14:11:55 +0000142 --enable-irdp=yes \
143%else
144 --enable-irdp=no \
145%endif
paul54b25dc2004-09-30 04:56:26 +0000146%if %{with_isisd}
147 --enable-isisd \
148%else
149 --disable-isisd
150%endif
151%if %{with_pam}
pauledd7c242003-06-04 13:59:38 +0000152 --with-libpam \
paul788cdc62003-01-18 00:22:08 +0000153%endif
paul6bd8fd32003-08-12 12:54:13 +0000154%if %quagga_user
155 --enable-user=%quagga_user \
156 --enable-group=%quagga_user \
pauledd7c242003-06-04 13:59:38 +0000157%endif
158%if %vty_group
159 --enable-vty-group=%vty_group \
160%endif
pauledd7c242003-06-04 13:59:38 +0000161--enable-netlink
paul788cdc62003-01-18 00:22:08 +0000162
163make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
164
165pushd doc
paul6bd8fd32003-08-12 12:54:13 +0000166texi2html quagga.texi
paul788cdc62003-01-18 00:22:08 +0000167popd
168
169%install
170rm -rf $RPM_BUILD_ROOT
171
172install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \
paul6bd8fd32003-08-12 12:54:13 +0000173 $RPM_BUILD_ROOT/var/log/quagga $RPM_BUILD_ROOT%{_infodir}
paul788cdc62003-01-18 00:22:08 +0000174
175make install \
176 DESTDIR=$RPM_BUILD_ROOT
177
paul9a344b72003-08-05 23:24:58 +0000178# Remove this file, as it is uninstalled and causes errors when building on RH9
179rm -rf $RPM_BUILD_ROOT/usr/share/info/dir
180
paul15d74e92003-12-30 11:16:21 +0000181# install etc sources
182for daemon in %daemon_list ; do
183 install %{zeb_rh_src}/${daemon}.init \
184 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
185done
186install -m644 %{zeb_rh_src}/quagga.pam \
187 $RPM_BUILD_ROOT/etc/pam.d/quagga
188install -m644 %{zeb_rh_src}/quagga.logrotate \
189 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
190install -m644 %{zeb_rh_src}/quagga.sysconfig \
191 $RPM_BUILD_ROOT/etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000192install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000193
194%pre
195# add vty_group
196%if %vty_group
197groupadd -r %vty_group 2> /dev/null || :
198%endif
paul6bd8fd32003-08-12 12:54:13 +0000199# add quagga user and group
200%if %quagga_user
paul15d74e92003-12-30 11:16:21 +0000201/usr/sbin/groupadd -g %quagga_gid quagga 2> /dev/null || :
202/usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
203 -M -r -s /sbin/nologin -c "Quagga routing suite" \
paul6bd8fd32003-08-12 12:54:13 +0000204 -d %_localstatedir %quagga_user 2> /dev/null || :
pauledd7c242003-06-04 13:59:38 +0000205%endif
paul788cdc62003-01-18 00:22:08 +0000206
paul788cdc62003-01-18 00:22:08 +0000207%post
paul30b9d892003-01-18 22:57:15 +0000208# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000209# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
210
211zebra_spec_add_service ()
212{
213 # Add port /etc/services entry if it isn't already there
214 if [ -f /etc/services ] && ! grep -q "^$1[^a-zA-Z0-9]" /etc/services ; then
215 echo "$1 $2 # $3" >> /etc/services
216 fi
217}
218
219zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
220zebra_spec_add_service zebra 2601/tcp "zebra vty"
221zebra_spec_add_service ripd 2602/tcp "RIPd vty"
paul54b25dc2004-09-30 04:56:26 +0000222%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000223zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
pauld7ccae22003-01-18 00:24:00 +0000224%endif
paul788cdc62003-01-18 00:22:08 +0000225zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
226zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
paul54b25dc2004-09-30 04:56:26 +0000227%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000228zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
pauld7ccae22003-01-18 00:24:00 +0000229%endif
paul54b25dc2004-09-30 04:56:26 +0000230%if %{with_ospfapi}
paul7021c422003-07-15 12:52:22 +0000231zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
232%endif
paul54b25dc2004-09-30 04:56:26 +0000233%if %{with_isisd}
jardin5a514b12003-12-23 10:50:21 +0000234zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000235%endif
paul788cdc62003-01-18 00:22:08 +0000236
paul15d74e92003-12-30 11:16:21 +0000237for daemon in %daemon_list ; do
238 /sbin/chkconfig --add ${daemon}
239done
paul788cdc62003-01-18 00:22:08 +0000240
paul6bd8fd32003-08-12 12:54:13 +0000241/sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000242
243# Create dummy files if they don't exist so basic functions can be used.
244if [ ! -e %{_sysconfdir}/zebra.conf ]; then
245 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
246 chmod 640 %{_sysconfdir}/zebra.conf
247fi
248if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
249 touch %{_sysconfdir}/vtysh.conf
250 chmod 640 %{_sysconfdir}/vtysh.conf
251fi
252
253%postun
254if [ "$1" -ge "1" ]; then
paul15d74e92003-12-30 11:16:21 +0000255 for daemon in %daemon_list ; do
256 /etc/rc.d/init.d/${daemon} condrestart >/dev/null 2>&1
257 done
paul788cdc62003-01-18 00:22:08 +0000258fi
paul788cdc62003-01-18 00:22:08 +0000259
260%preun
261if [ "$1" = "0" ]; then
paul15d74e92003-12-30 11:16:21 +0000262 for daemon in %daemon_list ; do
263 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
264 /sbin/chkconfig --del ${daemon}
265 done
266 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000267fi
268
269%clean
paulb5f310c2004-09-13 13:15:25 +0000270%if !%{keep_build}
271rm -rf $RPM_BUILD_ROOT
272%endif
paul788cdc62003-01-18 00:22:08 +0000273
274%files
275%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000276%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000277%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000278%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000279%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
paul54b25dc2004-09-30 04:56:26 +0000280%if %{quagga_user}
paul6bd8fd32003-08-12 12:54:13 +0000281%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
282%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
283%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000284%else
paul788cdc62003-01-18 00:22:08 +0000285%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000286%dir %attr(750,root,root) /var/log/quagga
paul788cdc62003-01-18 00:22:08 +0000287%dir %attr(755,root,root) /usr/share/info
paul6bd8fd32003-08-12 12:54:13 +0000288%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000289%endif
paul54b25dc2004-09-30 04:56:26 +0000290%if %{vty_group}
paul6bd8fd32003-08-12 12:54:13 +0000291%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000292%endif
paul788cdc62003-01-18 00:22:08 +0000293%{_infodir}/*info*
294%{_mandir}/man*/*
paul54b25dc2004-09-30 04:56:26 +0000295%{_sbindir}/zebra
296%{_sbindir}/ospfd
297%{_sbindir}/ripd
298%{_sbindir}/bgpd
299%if %{with_ipv6}
300%{_sbindir}/ripngd
301%{_sbindir}/ospf6d
302%endif
303%if %{with_isisd}
304%{_sbindir}/isisd
305%endif
306%if %{with_shared}
paul2ff9e822004-07-20 11:19:47 +0000307%{_libdir}/lib*.so
308%{_libdir}/lib*.so.*
paul54b25dc2004-09-30 04:56:26 +0000309%endif
310%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000311%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000312%endif
paul6bd8fd32003-08-12 12:54:13 +0000313%config /etc/quagga/[!v]*
paul788cdc62003-01-18 00:22:08 +0000314%config /etc/rc.d/init.d/*
paul15d74e92003-12-30 11:16:21 +0000315%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000316%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000317%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
318
paul448ed4a2003-03-01 15:43:28 +0000319%files contrib
320%defattr(-,root,root)
321%doc tools
322
paule0626852003-03-18 14:11:36 +0000323%files devel
324%defattr(-,root,root)
paul2ff9e822004-07-20 11:19:47 +0000325%dir %{_libdir}/*.a
326%dir %{_libdir}/*.la
paul15d74e92003-12-30 11:16:21 +0000327%dir %{_includedir}/%name/*.h
328%dir %{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000329%if %{with_ospfapi}
paul15d74e92003-12-30 11:16:21 +0000330%dir %{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000331%endif
paule0626852003-03-18 14:11:36 +0000332
paul788cdc62003-01-18 00:22:08 +0000333%changelog
paul15d74e92003-12-30 11:16:21 +0000334%changelog
paul54b25dc2004-09-30 04:56:26 +0000335* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
336- build snmp support by default
337- build irdp support
338- build with shared libs
339- devel subpackage for archives and headers
340
paul00bc5602004-01-09 16:30:52 +0000341* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
342- updated sysconfig files to specify local dir
343- added ospf_dump.c crash quick fix patch
344- added ospfd persistent interface configuration patch
345
paul15d74e92003-12-30 11:16:21 +0000346* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
347- sync to CVS
348- integrate RH sysconfig patch to specify daemon options (RH)
349- default to have vty listen only to 127.1 (RH)
350- add user with fixed UID/GID (RH)
351- create user with shell /sbin/nologin rather than /bin/false (RH)
352- stop daemons on uninstall (RH)
353- delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
354- isisd added
355- cleanup tasks carried out for every daemon
356
paul406f7002003-11-02 07:30:52 +0000357* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
358- Fix -devel package to include all files
359- Sync to 0.96.4
360
paul6bd8fd32003-08-12 12:54:13 +0000361* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
362- Renamed to Quagga
363- Sync to Quagga release 0.96
364
pauledd7c242003-06-04 13:59:38 +0000365* Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
366- zebra privileges support
367
paule0626852003-03-18 14:11:36 +0000368* Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
369- Fix mem leak in 'show thread cpu'
370- Ralph Keller's OSPF-API
371- Amir: Fix configure.ac for net-snmp
372
paul448ed4a2003-03-01 15:43:28 +0000373* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
374- ospfd IOS prefix to interface matching for 'network' statement
375- temporary fix for PtP and IPv6
376- sync to zebra.org CVS
377
paul8f754982003-01-20 04:55:51 +0000378* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
379- update to latest cvs
380- Yon's "show thread cpu" patch - 17217
381- walk up tree - 17218
382- ospfd NSSA fixes - 16681
383- ospfd nsm fixes - 16824
384- ospfd OLSA fixes and new feature - 16823
385- KAME and ifindex fixes - 16525
386- spec file changes to allow redhat files to be in tree
387
pauld7ccae22003-01-18 00:24:00 +0000388* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
389- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
390- Fixed up some build requirements (patch)
391- Added conditional build requirements for vtysh / snmp
392- Added conditional to %files for %_bindir depending on vtysh
393
paul788cdc62003-01-18 00:22:08 +0000394* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
395- update to latest CVS
396- add Greg Troxel's md5 buffer copy/dup fix
397- add RIPv1 fix
398- add Frank's multicast flag fix
399
400* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
401- update to latest CVS
402- timestamped crypt_seqnum patch
403- oi->on_write_q fix
404
405* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
406- update to latest CVS
407- add vtysh 'write-config (integrated|daemon)' patch
408- always 'make rebuild' in vtysh/ to catch new commands
409
410* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
411- update to 0.93b
412
413* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
414- update to latest CVS
415- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
416
417* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
418- update to current CVS
419- add OSPF point to multipoint patch
420- add OSPF bugfixes
421- add BGP hash optimisation patch
422
423* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
424- update to 0.93-pre1 / CVS
425- add link state detection support
426- add generic PtP and RFC3021 support
427- various bug fixes
428
429* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
430- Fix bug #51336
431
432* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
433- Use generic initscript strings instead of initscript specific
434 ( "Starting foo: " -> "Starting $prog:" )
435
436* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
437- Bump the release when rebuilding into the dist.
438
439* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
440- built for Powertools
441
442* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
443- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
444- Update to 0.91a
445- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
446- Should be quite Red Hat'isque now.