]> git.proxmox.com Git - mirror_frr.git/blob - redhat/frr.spec.in
Merge pull request #2602 from pacovn/PVS-Studio_element_overflow
[mirror_frr.git] / redhat / frr.spec.in
1 # configure options
2 #
3 # Some can be overriden on rpmbuild commandline with:
4 # rpmbuild --define 'variable value'
5 # (use any value, ie 1 for flag "with_XXXX" definitions)
6 #
7 # E.g. rpmbuild --define 'release_rev 02' may be useful if building
8 # rpms again and again on the same day, so the newer rpms can be installed.
9 # bumping the number each time.
10
11 #################### FRRouting (FRR) configure options #####################
12 # with-feature options
13 %{!?with_babeld: %global with_babeld 1 }
14 %{!?with_bgp_vnc: %global with_bgp_vnc 0 }
15 %{!?with_cumulus: %global with_cumulus 0 }
16 %{!?with_eigrpd: %global with_eigrpd 1 }
17 %{!?with_fpm: %global with_fpm 1 }
18 %{!?with_ldpd: %global with_ldpd 1 }
19 %{!?with_multipath: %global with_multipath 256 }
20 %{!?with_nhrpd: %global with_nhrpd 1 }
21 %{!?with_ospfapi: %global with_ospfapi 1 }
22 %{!?with_ospfclient: %global with_ospfclient 1 }
23 %{!?with_pam: %global with_pam 0 }
24 %{!?with_pbrd: %global with_pbrd 1 }
25 %{!?with_pimd: %global with_pimd 1 }
26 %{!?with_rpki: %global with_rpki 0 }
27 %{!?with_rtadv: %global with_rtadv 1 }
28 %{!?with_watchfrr: %global with_watchfrr 1 }
29
30 # user and group
31 %{!?frr_user: %global frr_user frr }
32 %{!?vty_group: %global vty_group frrvty }
33
34 # path defines
35 %define configdir %{_sysconfdir}/%{name}
36 %define _sbindir /usr/lib/frr
37 %define zeb_src %{_builddir}/%{name}-%{frrversion}
38 %define zeb_rh_src %{zeb_src}/redhat
39 %define zeb_docs %{zeb_src}/doc
40 %define frr_tools %{zeb_src}/tools
41
42 # defines for configure
43 %define rundir %{_localstatedir}/run/%{name}
44
45 # define for sphinx-build binary
46 %if 0%{?rhel} && 0%{?rhel} < 7
47 %define sphinx sphinx-build2.7
48 %else
49 %define sphinx sphinx-build
50 %endif
51 ############################################################################
52
53 #### Version String tweak
54 # Remove invalid characters form version string and replace with _
55 %{expand: %%global rpmversion %(echo '@VERSION@' | tr [:blank:]- _ )}
56 %define frrversion @VERSION@
57
58 #### Check for systemd or init.d (upstart)
59 # Check for init.d (upstart) as used in CentOS 6 or systemd (ie CentOS 7)
60 %if 0%{?fedora} || 0%{?rhel} >= 7 || 0%{?suse_version} >= 1210
61 %global initsystem systemd
62 %else
63 %if 0%{?rhel} && 0%{?rhel} < 7
64 %global initsystem upstart
65 %else
66 %{expand: %%global initsystem %(if [[ `/sbin/init --version 2> /dev/null` =~ upstart ]]; then echo upstart; elif [[ `readlink -f /sbin/init` = /usr/lib/systemd/systemd ]]; then echo systemd; elif [[ `systemctl` =~ -\.mount ]]; then echo systemd; fi)}
67 %endif
68 %endif
69
70 # If init system is systemd, then always enable watchfrr
71 %if "%{initsystem}" == "systemd"
72 %global with_watchfrr 1
73 %endif
74
75 #### Check for RedHat 6.x or CentOS 6.x - they are too old to support PIM.
76 #### Always disable it on these old systems unconditionally
77 #
78 # if CentOS / RedHat and version < 7, then disable PIMd (too old, won't work)
79 %if 0%{?rhel} && 0%{?rhel} < 7
80 %global with_pimd 0
81 %endif
82
83 # misc internal defines
84 %{!?frr_uid: %global frr_uid 92 }
85 %{!?frr_gid: %global frr_gid 92 }
86 %{!?vty_gid: %global vty_gid 85 }
87
88 %define daemon_list zebra ripd ospfd bgpd isisd ripngd ospf6d pbrd
89
90 %if %{with_ldpd}
91 %define daemon_ldpd ldpd
92 %else
93 %define daemon_ldpd ""
94 %endif
95
96 %if %{with_pimd}
97 %define daemon_pimd pimd
98 %else
99 %define daemon_pimd ""
100 %endif
101
102 %if %{with_pbrd}
103 %define daemon_pbrd pbrd
104 %else
105 %define daemon_pbrd ""
106 %endif
107
108 %if %{with_nhrpd}
109 %define daemon_nhrpd nhrpd
110 %else
111 %define daemon_nhrpd ""
112 %endif
113
114 %if %{with_eigrpd}
115 %define daemon_eigrpd eigrpd
116 %else
117 %define daemon_eigrpd ""
118 %endif
119
120 %if %{with_babeld}
121 %define daemon_babeld babeld
122 %else
123 %define daemon_babeld ""
124 %endif
125
126 %if %{with_watchfrr}
127 %define daemon_watchfrr watchfrr
128 %else
129 %define daemon_watchfrr ""
130 %endif
131
132 %define all_daemons %{daemon_list} %{daemon_ldpd} %{daemon_pimd} %{daemon_nhrpd} %{daemon_eigrpd} %{daemon_babeld} %{daemon_watchfrr} %{daemon_pbrd}
133
134 #release sub-revision (the two digits after the CONFDATE)
135 %{!?release_rev: %global release_rev 01 }
136
137 Summary: Routing daemon
138 Name: frr
139 Version: %{rpmversion}
140 Release: @CONFDATE@%{release_rev}%{?dist}
141 License: GPLv2+
142 Group: System Environment/Daemons
143 Source0: https://github.com/FRRouting/frr/archive/%{name}-%{frrversion}.tar.gz
144 URL: https://www.frrouting.org
145 Requires(pre): shadow-utils
146 Requires(preun): info
147 Requires(post): info
148 BuildRequires: bison >= 2.7
149 BuildRequires: c-ares-devel
150 BuildRequires: flex
151 BuildRequires: gcc
152 BuildRequires: json-c-devel
153 BuildRequires: libcap-devel
154 BuildRequires: make
155 BuildRequires: ncurses-devel
156 BuildRequires: readline-devel
157 BuildRequires: texinfo
158 %if 0%{?rhel} && 0%{?rhel} < 7
159 #python27-devel is available from ius community repo for RedHat/CentOS 6
160 BuildRequires: python27-devel
161 BuildRequires: python27-sphinx
162 %else
163 BuildRequires: python-devel >= 2.7
164 BuildRequires: python-sphinx
165 %endif
166 %if %{with_pam}
167 BuildRequires: pam-devel
168 %endif
169 %if %{with_rpki}
170 BuildRequires: librtr-devel >= 0.5
171 %endif
172 %if "%{initsystem}" == "systemd"
173 BuildRequires: systemd
174 BuildRequires: systemd-devel
175 Requires(post): systemd
176 Requires(preun): systemd
177 Requires(postun): systemd
178 %else
179 Requires(post): chkconfig
180 Requires(preun): chkconfig
181 # Initscripts > 5.60 is required for IPv6 support
182 Requires(pre): initscripts >= 5.60
183 Requires: initscripts
184 %endif
185 Provides: routingdaemon = %{version}-%{release}
186 Obsoletes: gated mrt zebra frr-sysvinit
187 Conflicts: bird
188
189
190 %description
191 FRRouting is a free software that manages TCP/IP based routing
192 protocol. It takes multi-server and multi-thread approach to resolve
193 the current complexity of the Internet.
194
195 FRRouting supports BGP4, OSPFv2, OSPFv3, ISIS, RIP, RIPng, PIM, LDP
196 NHRP, Babel, PBR and EIGRP.
197
198 FRRouting is a fork of Quagga.
199
200
201 %package contrib
202 Summary: contrib tools for frr
203 Group: System Environment/Daemons
204
205 %description contrib
206 Contributed/3rd party tools which may be of use with frr.
207
208
209 %package pythontools
210 Summary: python tools for frr
211 BuildRequires: python
212 Requires: python-ipaddr
213 Group: System Environment/Daemons
214
215 %description pythontools
216 Contributed python 2.7 tools which may be of use with frr.
217
218
219 %package devel
220 Summary: Header and object files for frr development
221 Group: System Environment/Daemons
222 Requires: %{name} = %{version}-%{release}
223
224 %description devel
225 The frr-devel package contains the header and object files neccessary for
226 developing OSPF-API and frr applications.
227
228
229 %prep
230 %setup -q -n frr-%{frrversion}
231
232
233 %build
234
235 # For standard gcc verbosity, uncomment these lines:
236 #CFLAGS="%{optflags} -Wall -Wsign-compare -Wpointer-arith"
237 #CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
238
239 # For ultra gcc verbosity, uncomment these lines also:
240 #CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
241 #CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
242 #CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
243 #CFLAGS="${CFLAGS} -Wpacked -Wpadded"
244
245 %configure \
246 --sbindir=%{_sbindir} \
247 --sysconfdir=%{configdir} \
248 --localstatedir=%{rundir} \
249 --disable-static \
250 --disable-werror \
251 --enable-irdp \
252 %if %{with_multipath}
253 --enable-multipath=%{with_multipath} \
254 %endif
255 --enable-vtysh \
256 %if %{with_ospfclient}
257 --enable-ospfclient \
258 %else
259 --disable-ospfclient\
260 %endif
261 %if %{with_ospfapi}
262 --enable-ospfapi \
263 %else
264 --disable-ospfapi \
265 %endif
266 %if %{with_rtadv}
267 --enable-rtadv \
268 %else
269 --disable-rtadv \
270 %endif
271 %if %{with_ldpd}
272 --enable-ldpd \
273 %else
274 --disable-ldpd \
275 %endif
276 %if %{with_pimd}
277 --enable-pimd \
278 %else
279 --disable-pimd \
280 %endif
281 %if %{with_pbrd}
282 --enable-pbrd \
283 %else
284 --disable-pbrd \
285 %endif
286 %if %{with_nhrpd}
287 --enable-nhrpd \
288 %else
289 --disable-nhrpd \
290 %endif
291 %if %{with_eigrpd}
292 --enable-eigrpd \
293 %else
294 --disable-eigrpd \
295 %endif
296 %if %{with_babeld}
297 --enable-babeld \
298 %else
299 --disable-babeld \
300 %endif
301 %if %{with_pam}
302 --with-libpam \
303 %endif
304 %if 0%{?frr_user:1}
305 --enable-user=%{frr_user} \
306 --enable-group=%{frr_user} \
307 %endif
308 %if 0%{?vty_group:1}
309 --enable-vty-group=%{vty_group} \
310 %endif
311 %if %{with_fpm}
312 --enable-fpm \
313 %else
314 --disable-fpm \
315 %endif
316 %if %{with_watchfrr}
317 --enable-watchfrr \
318 %else
319 --disable-watchfrr \
320 %endif
321 %if %{with_cumulus}
322 --enable-cumulus \
323 %endif
324 %if %{with_bgp_vnc}
325 --enable-bgp-vnc \
326 %else
327 --disable-bgp-vnc \
328 %endif
329 --enable-isisd \
330 %if "%{initsystem}" == "systemd"
331 --enable-systemd \
332 %endif
333 %if %{with_rpki}
334 --enable-rpki
335 %else
336 --disable-rpki
337 %endif
338
339 make %{?_smp_mflags} MAKEINFO="makeinfo --no-split" SPHINXBUILD=%{sphinx}
340
341 pushd doc
342 make SPHINXBUILD=%{sphinx} info
343 popd
344
345
346 %install
347 mkdir -p %{buildroot}%{_sysconfdir}/{frr,sysconfig,logrotate.d,pam.d,default} \
348 %{buildroot}%{_localstatedir}/log/frr %{buildroot}%{_infodir}
349 make DESTDIR=%{buildroot} INSTALL="install -p" CP="cp -p" SPHINXBUILD=%{sphinx} install
350
351 # Remove this file, as it is uninstalled and causes errors when building on RH9
352 rm -rf %{buildroot}/usr/share/info/dir
353
354 # Remove debian init script if it was installed
355 rm -f %{buildroot}%{_sbindir}/frr
356
357 # kill bogus libtool files
358 rm -vf %{buildroot}%{_libdir}/frr/modules/*.la
359 rm -vf %{buildroot}%{_libdir}/*.la
360
361 # install /etc sources
362 %if "%{initsystem}" == "systemd"
363 mkdir -p %{buildroot}%{_unitdir}
364 install -m644 %{zeb_rh_src}/frr.service %{buildroot}%{_unitdir}/frr.service
365 install %{zeb_rh_src}/frr.init %{buildroot}%{_sbindir}/frr
366 %else
367 mkdir -p %{buildroot}%{_initddir}
368 install %{zeb_rh_src}/frr.init %{buildroot}%{_sbindir}/frr
369 ln -s %{_sbindir}/frr %{buildroot}%{_initddir}/frr
370 %endif
371
372 install %{zeb_rh_src}/daemons %{buildroot}%{_sysconfdir}/frr
373 install -m644 %{zeb_rh_src}/frr.pam %{buildroot}%{_sysconfdir}/pam.d/frr
374 install -m644 %{zeb_rh_src}/frr.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/frr
375 install -d -m750 %{buildroot}%{rundir}
376
377
378 %pre
379 # add vty_group
380 %if 0%{?vty_group:1}
381 getent group %{vty_group} >/dev/null || groupadd -r -g %{vty_gid} %{vty_group}
382 %endif
383
384 # add frr user and group
385 %if 0%{?frr_user:1}
386 # Ensure that frr_gid gets correctly allocated
387 getent group %{frr_user} >/dev/null || groupadd -g %{frr_gid} %{frr_user}
388 getent passwd %{frr_user} >/dev/null || \
389 useradd -r -u %{frr_uid} -g %{frr_user} \
390 -s /sbin/nologin -c "FRRouting suite" \
391 -d %{rundir} %{frr_user}
392
393 %if 0%{?vty_group:1}
394 usermod -a -G %{vty_group} %{frr_user}
395 %endif
396 %endif
397 exit 0
398
399
400 %post
401 # zebra_spec_add_service <service name> <port/proto> <comment>
402 # e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
403
404 zebra_spec_add_service ()
405 {
406 # Add port /etc/services entry if it isn't already there
407 if [ -f %{_sysconfdir}/services ] && \
408 ! %__sed -e 's/#.*$//' %{_sysconfdir}/services | %__grep -wq $1 ; then
409 echo "$1 $2 # $3" >> %{_sysconfdir}/services
410 fi
411 }
412
413 zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
414 zebra_spec_add_service zebra 2601/tcp "zebra vty"
415 zebra_spec_add_service ripd 2602/tcp "RIPd vty"
416 zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
417 zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
418 zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
419 zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
420 zebra_spec_add_service isisd 2608/tcp "ISISd vty"
421 %if %{with_ospfapi}
422 zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
423 %endif
424 %if %{with_babeld}
425 zebra_spec_add_service babeld 2609/tcp "BABELd vty"
426 %endif
427 %if %{with_nhrpd}
428 zebra_spec_add_service nhrpd 2610/tcp "NHRPd vty"
429 %endif
430 %if %{with_pimd}
431 zebra_spec_add_service pimd 2611/tcp "PIMd vty"
432 %endif
433 %if %{with_pbrd}
434 zebra_spec_add_service pbrd 2615/tcp "PBRd vty"
435 %endif
436 %if %{with_ldpd}
437 zebra_spec_add_service ldpd 2612/tcp "LDPd vty"
438 %endif
439 %if %{with_eigrpd}
440 zebra_spec_add_service eigrpd 2613/tcp "EIGRPd vty"
441 %endif
442
443 %if "%{initsystem}" == "systemd"
444 for daemon in %all_daemons ; do
445 %systemd_post frr.service
446 done
447 %else
448 /sbin/chkconfig --add frr
449 %endif
450
451 # Fix bad path in previous config files
452 # Config files won't get replaced by default, so we do this ugly hack to fix it
453 %__sed -i 's|/etc/init.d/|%{_sbindir}/|g' %{configdir}/daemons 2> /dev/null || true
454
455 # With systemd, watchfrr is mandatory. Fix config to make sure it's enabled if
456 # we install or upgrade to a frr built with systemd
457 %if "%{initsystem}" == "systemd"
458 %__sed -i 's|watchfrr_enable=no|watchfrr_enable=yes|g' %{configdir}/daemons 2> /dev/null || true
459 %endif
460
461 /sbin/install-info %{_infodir}/frr.info.gz %{_infodir}/dir
462
463 # Create dummy files if they don't exist so basic functions can be used.
464 if [ ! -e %{configdir}/zebra.conf ]; then
465 echo "hostname `hostname`" > %{configdir}/zebra.conf
466 %if 0%{?frr_user:1}
467 chown %{frr_user}:%{frr_user} %{configdir}/zebra.conf*
468 %endif
469 chmod 640 %{configdir}/zebra.conf*
470 fi
471 for daemon in %{all_daemons} ; do
472 if [ x"${daemon}" != x"" ] ; then
473 if [ ! -e %{configdir}/${daemon}.conf ]; then
474 touch %{configdir}/${daemon}.conf
475 %if 0%{?frr_user:1}
476 chown %{frr_user}:%{frr_user} %{configdir}/${daemon}.conf*
477 %endif
478 fi
479 fi
480 done
481 %if 0%{?frr_user:1}
482 chown %{frr_user}:%{frr_user} %{configdir}/daemons
483 %endif
484
485 %if %{with_watchfrr}
486 # No config for watchfrr - this is part of /etc/sysconfig/frr
487 rm -f %{configdir}/watchfrr.*
488 %endif
489
490 if [ ! -e %{configdir}/vtysh.conf ]; then
491 touch %{configdir}/vtysh.conf
492 chmod 640 %{configdir}/vtysh.conf
493 %if 0%{?frr_user:1}
494 %if 0%{?vty_group:1}
495 chown %{frr_user}:%{vty_group} %{configdir}/vtysh.conf*
496 %endif
497 %endif
498 fi
499
500
501 %postun
502 if [ "$1" -ge 1 ]; then
503 #
504 # Upgrade from older version
505 #
506 %if "%{initsystem}" == "systemd"
507 ##
508 ## Systemd Version
509 ##
510 %systemd_postun_with_restart frr.service
511 %else
512 ##
513 ## init.d Version
514 ##
515 service frr restart >/dev/null 2>&1
516 %endif
517 :
518 fi
519
520
521 %preun
522 %if "%{initsystem}" == "systemd"
523 ##
524 ## Systemd Version
525 ##
526 if [ $1 -eq 0 ] ; then
527 %systemd_preun frr.service
528 fi
529 %else
530 ##
531 ## init.d Version
532 ##
533 if [ $1 -eq 0 ] ; then
534 service frr stop >/dev/null 2>&1
535 /sbin/chkconfig --del frr
536 fi
537 %endif
538 /sbin/install-info --delete %{_infodir}/frr.info.gz %{_infodir}/dir
539
540
541 %files
542 %doc */*.sample* AUTHORS COPYING
543 %doc doc/mpls
544 %doc ChangeLog NEWS README
545 %if 0%{?frr_user:1}
546 %dir %attr(751,%{frr_user},%{frr_user}) %{configdir}
547 %dir %attr(750,%{frr_user},%{frr_user}) %{_localstatedir}/log/frr
548 %dir %attr(751,%{frr_user},%{frr_user}) %{rundir}
549 %else
550 %dir %attr(750,root,root) %{configdir}
551 %dir %attr(750,root,root) %{_localstatedir}/log/frr
552 %dir %attr(750,root,root) %{rundir}
553 %endif
554 %if 0%{?vty_group:1}
555 %attr(750,%{frr_user},%{vty_group}) %{configdir}/vtysh.conf.sample
556 %endif
557 %{_infodir}/frr.info.gz
558 %{_mandir}/man*/*
559 %{_sbindir}/zebra
560 %{_sbindir}/ospfd
561 %{_sbindir}/ripd
562 %{_sbindir}/bgpd
563 %exclude %{_sbindir}/ssd
564 %if %{with_watchfrr}
565 %{_sbindir}/watchfrr
566 %endif
567 %{_sbindir}/ripngd
568 %{_sbindir}/ospf6d
569 %if %{with_pimd}
570 %{_sbindir}/pimd
571 %endif
572 %if %{with_pbrd}
573 %{_sbindir}/pbrd
574 %endif
575 %{_sbindir}/isisd
576 %if %{with_ldpd}
577 %{_sbindir}/ldpd
578 %endif
579 %if %{with_eigrpd}
580 %{_sbindir}/eigrpd
581 %endif
582 %if %{with_nhrpd}
583 %{_sbindir}/nhrpd
584 %endif
585 %if %{with_babeld}
586 %{_sbindir}/babeld
587 %endif
588 %{_libdir}/lib*.so.0
589 %{_libdir}/lib*.so.0.*
590 %if %{with_fpm}
591 %{_libdir}/frr/modules/zebra_fpm.so
592 %endif
593 %if %{with_rpki}
594 %{_libdir}/frr/modules/bgpd_rpki.so
595 %endif
596 %{_libdir}/frr/modules/zebra_irdp.so
597 %{_bindir}/*
598 %config(noreplace) %{configdir}/[!v]*.conf*
599 %config(noreplace) %attr(750,%{frr_user},%{frr_user}) %{configdir}/daemons
600 %if "%{initsystem}" == "systemd"
601 %{_unitdir}/frr.service
602 %else
603 %{_initddir}/frr
604 %endif
605 %{_sbindir}/frr
606 %config(noreplace) %{_sysconfdir}/pam.d/frr
607 %config(noreplace) %{_sysconfdir}/logrotate.d/frr
608 %{_sbindir}/frr-reload
609
610
611 %files contrib
612 %doc tools
613
614
615 %files pythontools
616 %{_sbindir}/frr-reload.py
617 %{_sbindir}/frr-reload.pyc
618 %{_sbindir}/frr-reload.pyo
619
620
621 %files devel
622 %{_libdir}/lib*.so
623 %if %{with_ospfclient}
624 %{_sbindir}/ospfclient
625 %endif
626 %dir %{_includedir}/%{name}
627 %{_includedir}/%{name}/*.h
628 %dir %{_includedir}/%{name}/ospfd
629 %{_includedir}/%{name}/ospfd/*.h
630 %if %{with_ospfapi}
631 %dir %{_includedir}/%{name}/ospfapi
632 %{_includedir}/%{name}/ospfapi/*.h
633 %endif
634 %if %{with_eigrpd}
635 %dir %{_includedir}/%{name}/eigrpd
636 %{_includedir}/%{name}/eigrpd/*.h
637 %endif
638
639
640 %changelog
641 * Sun May 20 2018 Martin Winter <mwinter@opensourcerouting.org>
642 - Fixed RPKI RPM build
643
644 * Sun Mar 4 2018 Martin Winter <mwinter@opensourcerouting.org>
645 - Add option to build with RPKI (default: disabled)
646
647 * Tue Feb 20 2018 Martin Winter <mwinter@opensourcerouting.org>
648 - Adapt to new documentation structure based on Sphinx
649
650 * Fri Oct 20 2017 Martin Winter <mwinter@opensourcerouting.org>
651 - Fix script location for watchfrr restart functions in daemon config
652 - Fix postun script to restart frr during upgrade
653
654 * Mon Jun 5 2017 Martin Winter <mwinter@opensourcerouting.org>
655 - added NHRP and EIGRP daemon
656
657 * Mon Apr 17 2017 Martin Winter <mwinter@opensourcerouting.org>
658 - new subpackage frr-pythontools with python 2.7 restart script
659 - remove PIMd from CentOS/RedHat 6 RPM packages (won't work - too old)
660 - converted to single frr init script (not per daemon) based on debian init script
661 - created systemd service file for systemd based systems (which uses init script)
662 - Various other RPM package fixes for FRR 2.0
663
664 * Fri Jan 6 2017 Martin Winter <mwinter@opensourcerouting.org>
665 - Renamed to frr for FRRouting fork of Quagga
666
667 * Thu Feb 11 2016 Paul Jakma <paul@jakma.org>
668 - remove with_ipv6 conditionals, always build v6
669 - Fix UTF-8 char in spec changelog
670 - remove quagga.pam.stack, long deprecated.
671
672 * Thu Oct 22 2015 Martin Winter <mwinter@opensourcerouting.org>
673 - Cleanup configure: remove --enable-ipv6 (default now), --enable-nssa,
674 --enable-netlink
675 - Remove support for old fedora 4/5
676 - Fix for package nameing
677 - Fix Weekdays of previous changelogs (bogus dates)
678 - Add conditional logic to only build tex footnotes with supported texi2html
679 - Added pimd to files section and fix double listing of /var/lib*/quagga
680 - Numerous fixes to unify upstart/systemd startup into same spec file
681 - Only allow use of watchfrr for non-systemd systems. no need with systemd
682
683 * Fri Sep 4 2015 Paul Jakma <paul@jakma.org>
684 - buildreq updates
685 - add a default define for with_pimd
686
687 * Mon Sep 12 2005 Paul Jakma <paul@dishone.st>
688 - Steal some changes from Fedora spec file:
689 - Add with_rtadv variable
690 - Test for groups/users with getent before group/user adding
691 - Readline need not be an explicit prerequisite
692 - install-info delete should be postun, not preun
693
694 * Wed Jan 12 2005 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
695 - on package upgrade, implement careful, phased restart logic
696 - use gcc -rdynamic flag when linking for better backtraces
697
698 * Wed Dec 22 2004 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
699 - daemonv6_list should contain only IPv6 daemons
700
701 * Wed Dec 22 2004 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
702 - watchfrr added
703 - on upgrade, all daemons should be condrestart'ed
704 - on removal, all daemons should be stopped
705
706 * Mon Nov 08 2004 Paul Jakma <paul@dishone.st>
707 - Use makeinfo --html to generate quagga.html
708
709 * Sun Nov 07 2004 Paul Jakma <paul@dishone.st>
710 - Fix with_ipv6 set to 0 build
711
712 * Sat Oct 23 2004 Paul Jakma <paul@dishone.st>
713 - Update to 0.97.2
714
715 * Sat Oct 23 2004 Andrew J. Schorr <aschorr@telemetry-investments.com>
716 - Make directories be owned by the packages concerned
717 - Update logrotate scripts to use correct path to killall and use pid files
718
719 * Fri Oct 08 2004 Paul Jakma <paul@dishone.st>
720 - Update to 0.97.0
721
722 * Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
723 - build snmp support by default
724 - build irdp support
725 - build with shared libs
726 - devel subpackage for archives and headers
727
728 * Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
729 - updated sysconfig files to specify local dir
730 - added ospf_dump.c crash quick fix patch
731 - added ospfd persistent interface configuration patch
732
733 * Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
734 - sync to CVS
735 - integrate RH sysconfig patch to specify daemon options (RH)
736 - default to have vty listen only to 127.1 (RH)
737 - add user with fixed UID/GID (RH)
738 - create user with shell /sbin/nologin rather than /bin/false (RH)
739 - stop daemons on uninstall (RH)
740 - delete info file on preun, not postun to avoid deletion on upgrade. (RH)
741 - isisd added
742 - cleanup tasks carried out for every daemon
743
744 * Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
745 - Fix -devel package to include all files
746 - Sync to 0.96.4
747
748 * Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
749 - Renamed to Quagga
750 - Sync to Quagga release 0.96
751
752 * Thu Mar 20 2003 Paul Jakma <paul@dishone.st>
753 - zebra privileges support
754
755 * Tue Mar 18 2003 Paul Jakma <paul@dishone.st>
756 - Fix mem leak in 'show thread cpu'
757 - Ralph Keller's OSPF-API
758 - Amir: Fix configure.ac for net-snmp
759
760 * Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
761 - ospfd IOS prefix to interface matching for 'network' statement
762 - temporary fix for PtP and IPv6
763 - sync to zebra.org CVS
764
765 * Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
766 - update to latest cvs
767 - Yon's "show thread cpu" patch - 17217
768 - walk up tree - 17218
769 - ospfd NSSA fixes - 16681
770 - ospfd nsm fixes - 16824
771 - ospfd OLSA fixes and new feature - 16823
772 - KAME and ifindex fixes - 16525
773 - spec file changes to allow redhat files to be in tree
774
775 * Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
776 - Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
777 - Fixed up some build requirements (patch)
778 - Added conditional build requirements for vtysh / snmp
779 - Added conditional to files for _bindir depending on vtysh
780
781 * Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
782 - update to latest CVS
783 - add Greg Troxel's md5 buffer copy/dup fix
784 - add RIPv1 fix
785 - add Frank's multicast flag fix
786
787 * Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
788 - update to latest CVS
789 - timestamped crypt_seqnum patch
790 - oi->on_write_q fix
791
792 * Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
793 - update to latest CVS
794 - add vtysh 'write-config (integrated|daemon)' patch
795 - always 'make rebuild' in vtysh/ to catch new commands
796
797 * Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
798 - update to 0.93b
799
800 * Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
801 - update to latest CVS
802 - add "/sbin/ip route flush proto zebra" to zebra RH init on startup
803
804 * Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
805 - update to current CVS
806 - add OSPF point to multipoint patch
807 - add OSPF bugfixes
808 - add BGP hash optimisation patch
809
810 * Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
811 - update to 0.93-pre1 / CVS
812 - add link state detection support
813 - add generic PtP and RFC3021 support
814 - various bug fixes
815
816 * Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
817 - Fix bug #51336
818
819 * Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
820 - Use generic initscript strings instead of initscript specific
821 ( "Starting foo: " -> "Starting $prog:" )
822
823 * Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
824 - Bump the release when rebuilding into the dist.
825
826 * Tue Feb 6 2001 Tim Powers <timp@redhat.com>
827 - built for Powertools
828
829 * Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
830 - Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
831 - Update to 0.91a
832 - Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
833 - Should be quite Red Hat'isque now.