blob: 0c927e6f8638c513ccd852e5e065d196e47e3d04 [file] [log] [blame]
pauledd7c242003-06-04 13:59:38 +00001# configure options
paulb64d92a2005-04-25 15:13:42 +00002#
3# Some can be overriden on rpmbuild commandline with:
4# rpmbuild --define 'variable value'
Martin Wintera5efdb62015-10-29 22:15:42 -07005# (use any value, ie 1 for flag "with_XXXX" definitions)
paulb64d92a2005-04-25 15:13:42 +00006#
Paul Jakma283d5d72016-02-11 13:54:23 +00007# 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.
paulb64d92a2005-04-25 15:13:42 +000010
paul11890752005-11-05 16:29:54 +000011####################### Quagga configure options #########################
12# with-feature options
Martin Wintera5efdb62015-10-29 22:15:42 -070013%{!?with_snmp: %global with_snmp 1 }
14%{!?with_vtysh: %global with_vtysh 1 }
15%{!?with_tcp_zebra: %global with_tcp_zebra 0 }
16%{!?with_vtysh: %global with_vtysh 1 }
17%{!?with_pam: %global with_pam 1 }
Paul Jakma75ebcd82017-03-05 10:21:02 +000018%{!?with_ospfclient: %global with_ospfclient 1 }
Martin Wintera5efdb62015-10-29 22:15:42 -070019%{!?with_ospfapi: %global with_ospfapi 1 }
20%{!?with_irdp: %global with_irdp 1 }
21%{!?with_rtadv: %global with_rtadv 1 }
22%{!?with_isisd: %global with_isisd 1 }
23%{!?with_pimd: %global with_pimd 1 }
Timo Teräs2d78fe72017-02-14 13:07:39 +020024%{!?with_nhrpd: %global with_nhrpd 1 }
Martin Wintera5efdb62015-10-29 22:15:42 -070025%{!?with_shared: %global with_shared 1 }
26%{!?with_multipath: %global with_multipath 64 }
27%{!?quagga_user: %global quagga_user quagga }
28%{!?vty_group: %global vty_group quaggavt }
Paul Jakma75ebcd82017-03-05 10:21:02 +000029%{!?with_fpm: %global with_fpm 0 }
30%{!?with_watchquagga: %global with_watchquagga 1 }
paul30b9d892003-01-18 22:57:15 +000031
32# path defines
paul6bd8fd32003-08-12 12:54:13 +000033%define _sysconfdir /etc/quagga
Martin Wintera5efdb62015-10-29 22:15:42 -070034%define zeb_src %{_builddir}/%{name}-%{quaggaversion}
paul8f754982003-01-20 04:55:51 +000035%define zeb_rh_src %{zeb_src}/redhat
36%define zeb_docs %{zeb_src}/doc
paul788cdc62003-01-18 00:22:08 +000037
paule0626852003-03-18 14:11:36 +000038# defines for configure
paul6bd8fd32003-08-12 12:54:13 +000039%define _localstatedir /var/run/quagga
paul11890752005-11-05 16:29:54 +000040############################################################################
41
Martin Wintera5efdb62015-10-29 22:15:42 -070042#### Version String tweak
43# Remove invalid characters form version string and replace with _
Paul Jakma75ebcd82017-03-05 10:21:02 +000044%{expand: %%global rpmversion %(echo '@VERSION@' | tr [:blank:]- _ )}
45%define quaggaversion @VERSION@
paul11890752005-11-05 16:29:54 +000046
Martin Wintera5efdb62015-10-29 22:15:42 -070047#### Check version of texi2html
48# Old versions don't support "--number-footnotes" option.
Paul Jakma9e31fbc2017-02-27 17:43:44 +000049%{expand: %%global texi2htmlversion %(type texi2html >/dev/null 2>&1 && (rpm -q --qf '%%{VERSION}' texi2html | cut -d. -f1) || echo 0 )}
paul11890752005-11-05 16:29:54 +000050
Martin Wintera5efdb62015-10-29 22:15:42 -070051#### Check for systemd or init.d (upstart)
52# Check for init.d (upstart) as used in CentOS 6 or systemd (ie CentOS 7)
53%{expand: %%global initsystem %(if [[ `/sbin/init --version 2> /dev/null` =~ upstart ]]; then echo upstart; elif [[ `systemctl` =~ -\.mount ]]; then echo systemd; fi)}
54#
55# If init system is systemd, then always disable watchquagga
56#
57%if "%{initsystem}" == "systemd"
58 # Note: For systems with systemd, watchquagga will NOT be built. Systemd
59 # takes over the role of restarting crashed processes. Value will
60 # be overwritten with 0 below for systemd independent on the setting here
61 %global with_watchquagga 0
62%endif
paul11890752005-11-05 16:29:54 +000063
Martin Wintera5efdb62015-10-29 22:15:42 -070064# if FPM is enabled, then enable tcp_zebra as well
65#
66%if %{with_fpm}
67 %global with_tcp_zebra 1
68%endif
paule0626852003-03-18 14:11:36 +000069
paul15d74e92003-12-30 11:16:21 +000070# misc internal defines
Paul Jakma75ebcd82017-03-05 10:21:02 +000071%{!?quagga_uid: %global quagga_uid 92 }
72%{!?quagga_gid: %global quagga_gid 92 }
73%{!?vty_gid: %global vty_gid 85 }
Martin Wintera5efdb62015-10-29 22:15:42 -070074
paul54b25dc2004-09-30 04:56:26 +000075%define daemon_list zebra ripd ospfd bgpd
paul0df63b52004-11-07 22:12:23 +000076
David Lamparter5460bae2015-05-19 00:35:04 +020077%define daemonv6_list ripngd ospf6d
paul0df63b52004-11-07 22:12:23 +000078
paul54b25dc2004-09-30 04:56:26 +000079%if %{with_isisd}
Martin Wintera5efdb62015-10-29 22:15:42 -070080%define daemon_isisd isisd
paul69f5d262004-10-07 16:23:36 +000081%else
Martin Wintera5efdb62015-10-29 22:15:42 -070082%define daemon_isisd ""
paul15d74e92003-12-30 11:16:21 +000083%endif
84
Martin Wintera5efdb62015-10-29 22:15:42 -070085%if %{with_pimd}
Paul Jakma75ebcd82017-03-05 10:21:02 +000086%define daemon_pimd pimd
Martin Wintera5efdb62015-10-29 22:15:42 -070087%else
88%define daemon_pimd ""
89%endif
90
Timo Teräs2d78fe72017-02-14 13:07:39 +020091%if %{with_nhrpd}
Paul Jakma75ebcd82017-03-05 10:21:02 +000092%define daemon_nhrpd nhrpd
Timo Teräs2d78fe72017-02-14 13:07:39 +020093%else
94%define daemon_nhrpd ""
95%endif
96
Martin Wintera5efdb62015-10-29 22:15:42 -070097%if %{with_watchquagga}
Paul Jakma75ebcd82017-03-05 10:21:02 +000098%define daemon_watchquagga watchquagga
Martin Wintera5efdb62015-10-29 22:15:42 -070099%else
100%define daemon_watchquagga ""
101%endif
102
Timo Teräs2d78fe72017-02-14 13:07:39 +0200103%define all_daemons %{daemon_list} %{daemonv6_list} %{daemon_isisd} %{daemon_pimd} %{daemon_nhrpd} %{daemon_watchquagga}
ajsb3324e22004-12-22 17:52:29 +0000104
paulb5f310c2004-09-13 13:15:25 +0000105# allow build dir to be kept
Martin Wintera5efdb62015-10-29 22:15:42 -0700106%{!?keep_build: %global keep_build 0 }
paulb5f310c2004-09-13 13:15:25 +0000107
paul4859e202005-11-20 02:09:32 +0000108#release sub-revision (the two digits after the CONFDATE)
Paul Jakma75ebcd82017-03-05 10:21:02 +0000109%{!?release_rev: %global release_rev 01 }
paul4859e202005-11-20 02:09:32 +0000110
paul788cdc62003-01-18 00:22:08 +0000111Summary: Routing daemon
Martin Wintera5efdb62015-10-29 22:15:42 -0700112Name: quagga
113Version: %{rpmversion}
114Release: @CONFDATE@%{release_rev}%{?dist}
115License: GPLv2+
116Group: System Environment/Daemons
Paul Jakma93687462017-02-27 22:42:59 +0000117Source0: https://download.savannah.gnu.org/releases/quagga/%{name}-%{quaggaversion}.tar.gz
118URL: https://www.quagga.net
Martin Wintera5efdb62015-10-29 22:15:42 -0700119Requires: ncurses
120Requires(pre): /sbin/install-info
121Requires(preun): /sbin/install-info
122Requires(post): /sbin/install-info
123BuildRequires: texi2html texinfo autoconf patch libcap-devel groff
Paul Jakma75ebcd82017-03-05 10:21:02 +0000124BuildRequires: perl-generators pkgconfig
paul54b25dc2004-09-30 04:56:26 +0000125%if %{with_snmp}
paulb63cef72004-08-19 03:36:13 +0000126BuildRequires: net-snmp-devel
Paul Jakma75ebcd82017-03-05 10:21:02 +0000127Requires: net-snmp
paul788cdc62003-01-18 00:22:08 +0000128%endif
paul54b25dc2004-09-30 04:56:26 +0000129%if %{with_vtysh}
paul30b9d892003-01-18 22:57:15 +0000130BuildRequires: readline readline-devel ncurses ncurses-devel
Paul Jakma75ebcd82017-03-05 10:21:02 +0000131Requires: ncurses
pauld7ccae22003-01-18 00:24:00 +0000132%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700133%if %{with_pam}
134BuildRequires: pam-devel
Paul Jakma75ebcd82017-03-05 10:21:02 +0000135Requires: pam
Martin Wintera5efdb62015-10-29 22:15:42 -0700136%endif
Paul Jakma4cdc0302017-03-03 15:07:28 +0000137%if %{with_nhrpd}
138BuildRequires: c-ares-devel
139Requires: c-ares
140%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700141%if "%{initsystem}" == "systemd"
142BuildRequires: systemd
143Requires(post): systemd
144Requires(preun): systemd
145Requires(postun): systemd
146%else
paul788cdc62003-01-18 00:22:08 +0000147# Initscripts > 5.60 is required for IPv6 support
Matti-Oskari Leppänenfa755852013-02-15 10:12:55 +0000148Requires(pre): initscripts >= 5.60
Martin Wintera5efdb62015-10-29 22:15:42 -0700149%endif
150Provides: routingdaemon = %{version}-%{release}
151BuildRoot: %{_tmppath}/%{name}-%{version}-root
Paul Jakma75ebcd82017-03-05 10:21:02 +0000152#Obsoletes: mrt zebra quagga-sysvinit
Paul Jakma93687462017-02-27 22:42:59 +0000153
154%define __perl_requires %{zeb_rh_src}/quagga-filter-perl-requires.sh
paul788cdc62003-01-18 00:22:08 +0000155
156%description
Paul Jakma93687462017-02-27 22:42:59 +0000157Quagga is a free software routing protocol suite.
paul788cdc62003-01-18 00:22:08 +0000158
Paul Jakma93687462017-02-27 22:42:59 +0000159Quagga supports BGP, OSPFv2, OSPFv3, ISIS, RIP, RIPng, PIM-SSM and NHRP.
paul788cdc62003-01-18 00:22:08 +0000160
paul448ed4a2003-03-01 15:43:28 +0000161%package contrib
paul6bd8fd32003-08-12 12:54:13 +0000162Summary: contrib tools for quagga
paul448ed4a2003-03-01 15:43:28 +0000163Group: System Environment/Daemons
164
165%description contrib
paul6bd8fd32003-08-12 12:54:13 +0000166Contributed/3rd party tools which may be of use with quagga.
paul448ed4a2003-03-01 15:43:28 +0000167
paule0626852003-03-18 14:11:36 +0000168%package devel
paul6bd8fd32003-08-12 12:54:13 +0000169Summary: Header and object files for quagga development
paule0626852003-03-18 14:11:36 +0000170Group: System Environment/Daemons
Martin Wintera5efdb62015-10-29 22:15:42 -0700171Requires: %{name} = %{version}-%{release}
paule0626852003-03-18 14:11:36 +0000172
173%description devel
paul6bd8fd32003-08-12 12:54:13 +0000174The quagga-devel package contains the header and object files neccessary for
175developing OSPF-API and quagga applications.
paule0626852003-03-18 14:11:36 +0000176
paul788cdc62003-01-18 00:22:08 +0000177%prep
Paul Jakma75ebcd82017-03-05 10:21:02 +0000178%setup -q -n quagga-%{quaggaversion}
paul788cdc62003-01-18 00:22:08 +0000179
180%build
ajs7966b972004-11-10 22:02:05 +0000181
paul788cdc62003-01-18 00:22:08 +0000182%configure \
Martin Wintera5efdb62015-10-29 22:15:42 -0700183 --sysconfdir=%{_sysconfdir} \
Paul Jakma93687462017-02-27 22:42:59 +0000184 --libdir=%{_libdir}/quagga \
Martin Wintera5efdb62015-10-29 22:15:42 -0700185 --libexecdir=%{_libexecdir} \
186 --localstatedir=%{_localstatedir} \
187 --disable-werror \
paul54b25dc2004-09-30 04:56:26 +0000188%if !%{with_shared}
189 --disable-shared \
190%endif
paul54b25dc2004-09-30 04:56:26 +0000191%if %{with_snmp}
paul788cdc62003-01-18 00:22:08 +0000192 --enable-snmp \
193%endif
paul54b25dc2004-09-30 04:56:26 +0000194%if %{with_multipath}
195 --enable-multipath=%{with_multipath} \
paul788cdc62003-01-18 00:22:08 +0000196%endif
paul54b25dc2004-09-30 04:56:26 +0000197%if %{with_tcp_zebra}
paul788cdc62003-01-18 00:22:08 +0000198 --enable-tcp-zebra \
199%endif
paul54b25dc2004-09-30 04:56:26 +0000200%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000201 --enable-vtysh \
202%endif
paul54b25dc2004-09-30 04:56:26 +0000203%if %{with_ospfclient}
paul68980082003-03-25 05:07:42 +0000204 --enable-ospfclient=yes \
205%else
206 --enable-ospfclient=no\
207%endif
paul54b25dc2004-09-30 04:56:26 +0000208%if %{with_ospfapi}
paul68980082003-03-25 05:07:42 +0000209 --enable-ospfapi=yes \
210%else
211 --enable-ospfapi=no \
212%endif
paul54b25dc2004-09-30 04:56:26 +0000213%if %{with_irdp}
paul5b819262004-07-28 14:11:55 +0000214 --enable-irdp=yes \
215%else
216 --enable-irdp=no \
217%endif
paule7cd37b2005-09-08 15:18:39 +0000218%if %{with_rtadv}
219 --enable-rtadv=yes \
220%else
221 --enable-rtadv=no \
222%endif
paul54b25dc2004-09-30 04:56:26 +0000223%if %{with_isisd}
224 --enable-isisd \
225%else
paul69f5d262004-10-07 16:23:36 +0000226 --disable-isisd \
paul54b25dc2004-09-30 04:56:26 +0000227%endif
Timo Teräs2d78fe72017-02-14 13:07:39 +0200228%if %{with_nhrpd}
229 --enable-nhrpd \
230%else
231 --disable-nhrpd \
232%endif
paul54b25dc2004-09-30 04:56:26 +0000233%if %{with_pam}
pauledd7c242003-06-04 13:59:38 +0000234 --with-libpam \
paul788cdc62003-01-18 00:22:08 +0000235%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700236%if 0%{?quagga_user:1}
paul6bd8fd32003-08-12 12:54:13 +0000237 --enable-user=%quagga_user \
238 --enable-group=%quagga_user \
pauledd7c242003-06-04 13:59:38 +0000239%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700240%if 0%{?vty_group:1}
pauledd7c242003-06-04 13:59:38 +0000241 --enable-vty-group=%vty_group \
242%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700243%if %{with_fpm}
244 --enable-fpm \
245%else
246 --disable-fpm \
247%endif
248%if %{with_watchquagga}
249 --enable-watchquagga \
250%else
251 --disable-watchquagga \
252%endif
253 --enable-gcc-rdynamic
paul788cdc62003-01-18 00:22:08 +0000254
255make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
256
257pushd doc
Martin Wintera5efdb62015-10-29 22:15:42 -0700258%if %{texi2htmlversion} < 5
259texi2html --number-sections quagga.texi
260%else
Paul Jakmae07068c2015-09-04 14:25:13 +0100261texi2html --number-footnotes --number-sections quagga.texi
Martin Wintera5efdb62015-10-29 22:15:42 -0700262%endif
paul788cdc62003-01-18 00:22:08 +0000263popd
264
265%install
Martin Wintera5efdb62015-10-29 22:15:42 -0700266mkdir -p %{buildroot}/etc/{quagga,sysconfig,logrotate.d,pam.d} \
Paul Jakma75ebcd82017-03-05 10:21:02 +0000267 %{buildroot}/var/log/quagga %{buildroot}%{_infodir}
Martin Wintera5efdb62015-10-29 22:15:42 -0700268make DESTDIR=%{buildroot} INSTALL="install -p" CP="cp -p" install
paul788cdc62003-01-18 00:22:08 +0000269
paul9a344b72003-08-05 23:24:58 +0000270# Remove this file, as it is uninstalled and causes errors when building on RH9
Martin Wintera5efdb62015-10-29 22:15:42 -0700271rm -rf %{buildroot}/usr/share/info/dir
paul9a344b72003-08-05 23:24:58 +0000272
Martin Wintera5efdb62015-10-29 22:15:42 -0700273# install /etc sources
274%if "%{initsystem}" == "systemd"
275mkdir -p %{buildroot}%{_unitdir}
276for daemon in %{all_daemons} ; do
277 if [ x"${daemon}" != x"" ] ; then
278 install %{zeb_rh_src}/${daemon}.service \
279 %{buildroot}%{_unitdir}/${daemon}.service
280 fi
281done
282%else
283mkdir -p %{buildroot}/etc/rc.d/init.d
ajsb3324e22004-12-22 17:52:29 +0000284for daemon in %{all_daemons} ; do
paulda29c6b2004-10-08 00:49:09 +0000285 if [ x"${daemon}" != x"" ] ; then
286 install %{zeb_rh_src}/${daemon}.init \
Martin Wintera5efdb62015-10-29 22:15:42 -0700287 %{buildroot}/etc/rc.d/init.d/${daemon}
paulda29c6b2004-10-08 00:49:09 +0000288 fi
paul15d74e92003-12-30 11:16:21 +0000289done
Martin Wintera5efdb62015-10-29 22:15:42 -0700290%endif
291
Paul Jakma283d5d72016-02-11 13:54:23 +0000292install -m644 %{zeb_rh_src}/quagga.pam \
Martin Wintera5efdb62015-10-29 22:15:42 -0700293 %{buildroot}/etc/pam.d/quagga
paul15d74e92003-12-30 11:16:21 +0000294install -m644 %{zeb_rh_src}/quagga.logrotate \
Martin Wintera5efdb62015-10-29 22:15:42 -0700295 %{buildroot}/etc/logrotate.d/quagga
paul15d74e92003-12-30 11:16:21 +0000296install -m644 %{zeb_rh_src}/quagga.sysconfig \
Martin Wintera5efdb62015-10-29 22:15:42 -0700297 %{buildroot}/etc/sysconfig/quagga
298install -d -m750 %{buildroot}/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000299
Paul Jakma93687462017-02-27 22:42:59 +0000300
301%if 0%{?_tmpfilesdir:1}
302 install -d -m 755 %{buildroot}/%{_tmpfilesdir}
303 install -p -m 644 %{zeb_rh_src}/quagga-tmpfs.conf \
304 %{buildroot}/%{_tmpfilesdir}/quagga.conf
305%endif
306
pauledd7c242003-06-04 13:59:38 +0000307%pre
308# add vty_group
Martin Wintera5efdb62015-10-29 22:15:42 -0700309%if 0%{?vty_group:1}
paule7cd37b2005-09-08 15:18:39 +0000310if getent group %vty_group > /dev/null ; then : ; else \
Paul Jakma75ebcd82017-03-05 10:21:02 +0000311 /usr/sbin/groupadd -r -g %vty_gid %vty_group > /dev/null || : ; fi
pauledd7c242003-06-04 13:59:38 +0000312%endif
paule7cd37b2005-09-08 15:18:39 +0000313
paul6bd8fd32003-08-12 12:54:13 +0000314# add quagga user and group
Martin Wintera5efdb62015-10-29 22:15:42 -0700315%if 0%{?quagga_user:1}
paule7cd37b2005-09-08 15:18:39 +0000316# Ensure that quagga_gid gets correctly allocated
317if getent group %quagga_user >/dev/null; then : ; else \
Paul Jakma75ebcd82017-03-05 10:21:02 +0000318 /usr/sbin/groupadd -g %quagga_gid %quagga_user > /dev/null || : ; \
paule7cd37b2005-09-08 15:18:39 +0000319fi
320if getent passwd %quagga_user >/dev/null ; then : ; else \
Paul Jakma75ebcd82017-03-05 10:21:02 +0000321 /usr/sbin/useradd -u %quagga_uid -g %quagga_gid -G %vty_group \
322 -M -r -s /sbin/nologin -c "Quagga routing suite" \
323 -d %_localstatedir %quagga_user 2> /dev/null || : ; \
paule7cd37b2005-09-08 15:18:39 +0000324fi
pauledd7c242003-06-04 13:59:38 +0000325%endif
paul788cdc62003-01-18 00:22:08 +0000326
paul788cdc62003-01-18 00:22:08 +0000327%post
paul30b9d892003-01-18 22:57:15 +0000328# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000329# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
330
331zebra_spec_add_service ()
332{
333 # Add port /etc/services entry if it isn't already there
paul6b637e92004-10-23 00:48:51 +0000334 if [ -f /etc/services ] && \
335 ! %__sed -e 's/#.*$//' /etc/services | %__grep -wq $1 ; then
paul788cdc62003-01-18 00:22:08 +0000336 echo "$1 $2 # $3" >> /etc/services
337 fi
338}
339
340zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
Paul Jakma75ebcd82017-03-05 10:21:02 +0000341zebra_spec_add_service zebra 2601/tcp "zebra vty"
342zebra_spec_add_service ripd 2602/tcp "RIPd vty"
343zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
344zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
345zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
346zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
paul54b25dc2004-09-30 04:56:26 +0000347%if %{with_ospfapi}
Paul Jakma75ebcd82017-03-05 10:21:02 +0000348zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
paul7021c422003-07-15 12:52:22 +0000349%endif
paul54b25dc2004-09-30 04:56:26 +0000350%if %{with_isisd}
Paul Jakma75ebcd82017-03-05 10:21:02 +0000351zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000352%endif
Everton Marques871dbcf2009-08-11 15:43:05 -0300353%if %{with_pimd}
Paul Jakma75ebcd82017-03-05 10:21:02 +0000354zebra_spec_add_service pimd 2611/tcp "PIMd vty"
Everton Marques871dbcf2009-08-11 15:43:05 -0300355%endif
Timo Teräs2d78fe72017-02-14 13:07:39 +0200356%if %{with_nhrpd}
Paul Jakma75ebcd82017-03-05 10:21:02 +0000357zebra_spec_add_service nhrpd 2612/tcp "NHRPd vty"
Timo Teräs2d78fe72017-02-14 13:07:39 +0200358%endif
paul788cdc62003-01-18 00:22:08 +0000359
Martin Wintera5efdb62015-10-29 22:15:42 -0700360%if "%{initsystem}" == "systemd"
361for daemon in %all_daemons ; do
362 %systemd_post ${daemon}.service
363done
364%else
365for daemon in %all_daemons ; do
paul15d74e92003-12-30 11:16:21 +0000366 /sbin/chkconfig --add ${daemon}
367done
Martin Wintera5efdb62015-10-29 22:15:42 -0700368%endif
paul788cdc62003-01-18 00:22:08 +0000369
Paul Jakma93687462017-02-27 22:42:59 +0000370if [ -f %{_infodir}/%{name}.inf* ]; then
371 /sbin/install-info %{_infodir}/quagga.info %{_infodir}/dir
372fi
paul788cdc62003-01-18 00:22:08 +0000373
374# Create dummy files if they don't exist so basic functions can be used.
375if [ ! -e %{_sysconfdir}/zebra.conf ]; then
376 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
Martin Wintera5efdb62015-10-29 22:15:42 -0700377%if 0%{?quagga_user:1}
378 chown %quagga_user:%quagga_user %{_sysconfdir}/zebra.conf*
paule7cd37b2005-09-08 15:18:39 +0000379%endif
paul788cdc62003-01-18 00:22:08 +0000380 chmod 640 %{_sysconfdir}/zebra.conf
381fi
Martin Wintera5efdb62015-10-29 22:15:42 -0700382for daemon in %{all_daemons} ; do
383 if [ ! -e %{_sysconfdir}/${daemon}.conf ]; then
384 touch %{_sysconfdir}/${daemon}.conf
385 %if 0%{?quagga_user:1}
386 chown %quagga_user:%quagga_user %{_sysconfdir}/${daemon}.conf*
387 %endif
388 fi
389done
390%if %{with_watchquagga}
391 # No config for watchquagga - this is part of /etc/sysconfig/quagga
392 rm -f %{_sysconfdir}/watchquagga.*
393%endif
394
paul788cdc62003-01-18 00:22:08 +0000395if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
396 touch %{_sysconfdir}/vtysh.conf
397 chmod 640 %{_sysconfdir}/vtysh.conf
Martin Wintera5efdb62015-10-29 22:15:42 -0700398%if 0%{?vty_group:1}
399 chown quagga:%{vty_group} %{_sysconfdir}/vtysh.conf*
400%endif
paul788cdc62003-01-18 00:22:08 +0000401fi
402
403%postun
ajsfc43ecc2005-01-12 16:41:33 +0000404if [ "$1" -ge 1 ]; then
405 # Find out which daemons need to be restarted.
ajsb3324e22004-12-22 17:52:29 +0000406 for daemon in %all_daemons ; do
Martin Wintera5efdb62015-10-29 22:15:42 -0700407 if [ -f /var/lock/subsys/${daemon} ]; then
408 eval restart_${daemon}=yes
ajsfc43ecc2005-01-12 16:41:33 +0000409 else
Martin Wintera5efdb62015-10-29 22:15:42 -0700410 eval restart_${daemon}=no
ajsfc43ecc2005-01-12 16:41:33 +0000411 fi
paul15d74e92003-12-30 11:16:21 +0000412 done
ajsfc43ecc2005-01-12 16:41:33 +0000413 # Rename restart flags for daemons handled specially.
414 running_zebra="$restart_zebra"
415 restart_zebra=no
Martin Wintera5efdb62015-10-29 22:15:42 -0700416 %if %{with_watchquagga}
417 running_watchquagga="$restart_watchquagga"
418 restart_watchquagga=no
419 %endif
420
421 %if "%{initsystem}" == "systemd"
422 ##
423 ## Systemd Version
424 ##
425 # No watchquagga for systemd version
426 #
427 # Stop all daemons other than zebra.
428 for daemon in %all_daemons ; do
429 eval restart=\$restart_${daemon}
430 [ "$restart" = yes ] && \
Paul Jakma93687462017-02-27 22:42:59 +0000431 %systemd_postun_with_restart ${daemon}.service
Martin Wintera5efdb62015-10-29 22:15:42 -0700432 done
433 # Restart zebra.
434 [ "$running_zebra" = yes ] && \
435 %systemd_postun_with_restart $daemon.service
436 # Start all daemons other than zebra.
437 for daemon in %all_daemons ; do
438 eval restart=\$restart_${daemon}
439 [ "$restart" = yes ] && \
440 %systemd_post ${daemon}.service
441 done
442 %else
443 ##
444 ## init.d Version
445 ##
446 %if %{with_watchquagga}
447 # Stop watchquagga first.
448 [ "$running_watchquagga" = yes ] && \
449 /etc/rc.d/init.d/watchquagga stop >/dev/null 2>&1
450 %endif
451 # Stop all daemons other than zebra and watchquagga.
452 for daemon in %all_daemons ; do
453 eval restart=\$restart_${daemon}
454 [ "$restart" = yes ] && \
455 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
456 done
457 # Restart zebra.
458 [ "$running_zebra" = yes ] && \
459 /etc/rc.d/init.d/zebra restart >/dev/null 2>&1
460 # Start all daemons other than zebra and watchquagga.
461 for daemon in %all_daemons ; do
462 eval restart=\$restart_${daemon}
463 [ "$restart" = yes ] && \
464 /etc/rc.d/init.d/${daemon} start >/dev/null 2>&1
465 done
466 %if %{with_watchquagga}
467 # Start watchquagga last.
468 # Avoid postun scriptlet error if watchquagga is not running.
469 [ "$running_watchquagga" = yes ] && \
470 /etc/rc.d/init.d/watchquagga start >/dev/null 2>&1 || :
471 %endif
472 %endif
paul788cdc62003-01-18 00:22:08 +0000473fi
paul788cdc62003-01-18 00:22:08 +0000474
Paul Jakma93687462017-02-27 22:42:59 +0000475if [ -f %{_infodir}/%{name}.inf* ]; then
476 /sbin/install-info --delete %{_infodir}/quagga.info %{_infodir}/dir
477fi
478
paul788cdc62003-01-18 00:22:08 +0000479%preun
Martin Wintera5efdb62015-10-29 22:15:42 -0700480%if "%{initsystem}" == "systemd"
481 ##
482 ## Systemd Version
483 ##
484 if [ "$1" = "0" ]; then
485 for daemon in %all_daemons ; do
486 %systemd_preun ${daemon}.service
487 done
488 fi
489%else
490 ##
491 ## init.d Version
492 ##
493 if [ "$1" = "0" ]; then
494 for daemon in %all_daemons ; do
Paul Jakma75ebcd82017-03-05 10:21:02 +0000495 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
Martin Wintera5efdb62015-10-29 22:15:42 -0700496 /sbin/chkconfig --del ${daemon}
497 done
498 fi
499%endif
paul788cdc62003-01-18 00:22:08 +0000500
501%clean
Martin Wintera5efdb62015-10-29 22:15:42 -0700502%if !0%{?keep_build:1}
503rm -rf %{buildroot}
paulb5f310c2004-09-13 13:15:25 +0000504%endif
paul788cdc62003-01-18 00:22:08 +0000505
506%files
507%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000508%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000509%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000510%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000511%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
Martin Wintera5efdb62015-10-29 22:15:42 -0700512%if 0%{?quagga_user:1}
paul6bd8fd32003-08-12 12:54:13 +0000513%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
514%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
515%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000516%else
paul788cdc62003-01-18 00:22:08 +0000517%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000518%dir %attr(750,root,root) /var/log/quagga
paul6bd8fd32003-08-12 12:54:13 +0000519%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000520%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700521%if 0%{?vty_group:1}
paul6bd8fd32003-08-12 12:54:13 +0000522%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000523%endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700524%{_infodir}/quagga.info.gz
paul788cdc62003-01-18 00:22:08 +0000525%{_mandir}/man*/*
Paul Jakma93687462017-02-27 22:42:59 +0000526%if %{with_watchquagga}
527 %{_mandir}/man*/watchquagga.*
528%endif
paul54b25dc2004-09-30 04:56:26 +0000529%{_sbindir}/zebra
530%{_sbindir}/ospfd
531%{_sbindir}/ripd
532%{_sbindir}/bgpd
Martin Wintera5efdb62015-10-29 22:15:42 -0700533%if %{with_watchquagga}
534 %{_sbindir}/watchquagga
535%endif
paul54b25dc2004-09-30 04:56:26 +0000536%{_sbindir}/ripngd
537%{_sbindir}/ospf6d
Paul Jakma283d5d72016-02-11 13:54:23 +0000538%if %{with_pimd}
539%{_sbindir}/pimd
paul54b25dc2004-09-30 04:56:26 +0000540%endif
541%if %{with_isisd}
542%{_sbindir}/isisd
543%endif
Timo Teräs2d78fe72017-02-14 13:07:39 +0200544%if %{with_nhrpd}
545%{_sbindir}/nhrpd
546%endif
paul28f79722004-10-29 05:35:43 +0000547%if %{with_shared}
Paul Jakma93687462017-02-27 22:42:59 +0000548%{_libdir}/quagga/lib*.so
549%{_libdir}/quagga/lib*.so.?
550%attr(755,root,root) %{_libdir}/quagga/lib*.so.?.?.?
paul54b25dc2004-09-30 04:56:26 +0000551%endif
552%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000553%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000554%endif
paul6bd8fd32003-08-12 12:54:13 +0000555%config /etc/quagga/[!v]*
Martin Wintera5efdb62015-10-29 22:15:42 -0700556%if "%{initsystem}" == "systemd"
Paul Jakma93687462017-02-27 22:42:59 +0000557 %{_unitdir}/*.service
Martin Wintera5efdb62015-10-29 22:15:42 -0700558%else
559 %config /etc/rc.d/init.d/zebra
560 %if %{with_watchquagga}
561 %config /etc/rc.d/init.d/watchquagga
562 %endif
563 %config /etc/rc.d/init.d/ripd
564 %config /etc/rc.d/init.d/ospfd
565 %config /etc/rc.d/init.d/bgpd
566 %config /etc/rc.d/init.d/ripngd
567 %config /etc/rc.d/init.d/ospf6d
568 %if %{with_isisd}
569 %config /etc/rc.d/init.d/isisd
570 %endif
571 %if %{with_pimd}
572 %config /etc/rc.d/init.d/pimd
573 %endif
Timo Teräs2d78fe72017-02-14 13:07:39 +0200574 %if %{with_nhrpd}
575 %config /etc/rc.d/init.d/nhrpd
576 %endif
Martin Wintera5efdb62015-10-29 22:15:42 -0700577%endif
paul15d74e92003-12-30 11:16:21 +0000578%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000579%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000580%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
Paul Jakma93687462017-02-27 22:42:59 +0000581%{_tmpfilesdir}/quagga.conf
paul788cdc62003-01-18 00:22:08 +0000582
paul448ed4a2003-03-01 15:43:28 +0000583%files contrib
584%defattr(-,root,root)
Paul Jakma93687462017-02-27 22:42:59 +0000585%doc AUTHORS COPYING %attr(0644,root,root) tools
paul448ed4a2003-03-01 15:43:28 +0000586
paule0626852003-03-18 14:11:36 +0000587%files devel
588%defattr(-,root,root)
Paul Jakma93687462017-02-27 22:42:59 +0000589%doc AUTHORS COPYING
paulda29c6b2004-10-08 00:49:09 +0000590%if %{with_ospfclient}
591%{_sbindir}/ospfclient
592%endif
Paul Jakma93687462017-02-27 22:42:59 +0000593%dir %{_libdir}/quagga/
594%{_libdir}/quagga/*.a
595%{_libdir}/quagga/*.la
paulcfc18422004-10-23 00:05:41 +0000596%dir %attr(755,root,root) %{_includedir}/%{name}
paul28f79722004-10-29 05:35:43 +0000597%{_includedir}/%name/*.h
paulcfc18422004-10-23 00:05:41 +0000598%dir %attr(755,root,root) %{_includedir}/%{name}/ospfd
paul28f79722004-10-29 05:35:43 +0000599%{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000600%if %{with_ospfapi}
paulcfc18422004-10-23 00:05:41 +0000601%dir %attr(755,root,root) %{_includedir}/%{name}/ospfapi
paul28f79722004-10-29 05:35:43 +0000602%{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000603%endif
paule0626852003-03-18 14:11:36 +0000604
paul788cdc62003-01-18 00:22:08 +0000605%changelog
Paul Jakma75ebcd82017-03-05 10:21:02 +0000606* Mon Feb 27 2017 Paul Jakma <paul@jakma.org>
Paul Jakma93687462017-02-27 22:42:59 +0000607- Apply 0001-systemd-various-service-file-improvements.patch from Fedora
608- Review Fedora spec file and sync up with any useful differences, inc:
609- Add tmpfiles.d config for Quagga from Fedora
610- Add quagga-filter-perl-requires.sh from Fedora.
Paul Jakma75ebcd82017-03-05 10:21:02 +0000611- Move libs to %%{_libdir}/quagga as per Fedora
Paul Jakma93687462017-02-27 22:42:59 +0000612- use systemd_postun_with_restart for postun
613
Paul Jakma75ebcd82017-03-05 10:21:02 +0000614* Tue Feb 14 2017 Timo Teräs <timo.teras@iki.fi>
Timo Teräs2d78fe72017-02-14 13:07:39 +0200615- add nhrpd
616
617* Thu Feb 11 2016 Paul Jakma <paul@jakma.org>
Paul Jakma283d5d72016-02-11 13:54:23 +0000618- remove with_ipv6 conditionals, always build v6
619- Fix UTF-8 char in spec changelog
620- remove quagga.pam.stack, long deprecated.
621
Martin Wintera5efdb62015-10-29 22:15:42 -0700622* Thu Oct 22 2015 Martin Winter <mwinter@opensourcerouting.org>
623- Cleanup configure: remove --enable-ipv6 (default now), --enable-nssa,
624 --enable-netlink
625- Remove support for old fedora 4/5
626- Fix for package nameing
627- Fix Weekdays of previous changelogs (bogus dates)
628- Add conditional logic to only build tex footnotes with supported texi2html
629- Added pimd to files section and fix double listing of /var/lib*/quagga
630- Numerous fixes to unify upstart/systemd startup into same spec file
631- Only allow use of watchquagga for non-systemd systems. no need with systemd
632
633* Fri Sep 4 2015 Paul Jakma <paul@jakma.org>
Paul Jakmae07068c2015-09-04 14:25:13 +0100634- buildreq updates
635- add a default define for with_pimd
636
Martin Wintera5efdb62015-10-29 22:15:42 -0700637* Mon Sep 12 2005 Paul Jakma <paul@dishone.st>
paule7cd37b2005-09-08 15:18:39 +0000638- Steal some changes from Fedora spec file:
639- Add with_rtadv variable
640- Test for groups/users with getent before group/user adding
641- Readline need not be an explicit prerequisite
642- install-info delete should be postun, not preun
643
ajsfc43ecc2005-01-12 16:41:33 +0000644* Wed Jan 12 2005 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
645- on package upgrade, implement careful, phased restart logic
646- use gcc -rdynamic flag when linking for better backtraces
647
ajsb3324e22004-12-22 17:52:29 +0000648* Wed Dec 22 2004 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajsf3931752004-12-23 00:00:58 +0000649- daemonv6_list should contain only IPv6 daemons
650
651* Wed Dec 22 2004 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajsb3324e22004-12-22 17:52:29 +0000652- watchquagga added
653- on upgrade, all daemons should be condrestart'ed
654- on removal, all daemons should be stopped
655
paul36002ae2004-11-08 17:36:29 +0000656* Mon Nov 08 2004 Paul Jakma <paul@dishone.st>
657- Use makeinfo --html to generate quagga.html
658
paul0df63b52004-11-07 22:12:23 +0000659* Sun Nov 07 2004 Paul Jakma <paul@dishone.st>
660- Fix with_ipv6 set to 0 build
661
paulcfc18422004-10-23 00:05:41 +0000662* Sat Oct 23 2004 Paul Jakma <paul@dishone.st>
663- Update to 0.97.2
664
665* Sat Oct 23 2004 Andrew J. Schorr <aschorr@telemetry-investments.com>
666- Make directories be owned by the packages concerned
667- Update logrotate scripts to use correct path to killall and use pid files
668
paulda29c6b2004-10-08 00:49:09 +0000669* Fri Oct 08 2004 Paul Jakma <paul@dishone.st>
670- Update to 0.97.0
671
paul54b25dc2004-09-30 04:56:26 +0000672* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
673- build snmp support by default
674- build irdp support
675- build with shared libs
676- devel subpackage for archives and headers
677
paul00bc5602004-01-09 16:30:52 +0000678* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
679- updated sysconfig files to specify local dir
680- added ospf_dump.c crash quick fix patch
681- added ospfd persistent interface configuration patch
682
paul15d74e92003-12-30 11:16:21 +0000683* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
684- sync to CVS
685- integrate RH sysconfig patch to specify daemon options (RH)
686- default to have vty listen only to 127.1 (RH)
687- add user with fixed UID/GID (RH)
688- create user with shell /sbin/nologin rather than /bin/false (RH)
689- stop daemons on uninstall (RH)
Martin Wintera5efdb62015-10-29 22:15:42 -0700690- delete info file on preun, not postun to avoid deletion on upgrade. (RH)
paul15d74e92003-12-30 11:16:21 +0000691- isisd added
692- cleanup tasks carried out for every daemon
693
paul406f7002003-11-02 07:30:52 +0000694* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
695- Fix -devel package to include all files
696- Sync to 0.96.4
697
paul6bd8fd32003-08-12 12:54:13 +0000698* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
699- Renamed to Quagga
700- Sync to Quagga release 0.96
701
Martin Wintera5efdb62015-10-29 22:15:42 -0700702* Thu Mar 20 2003 Paul Jakma <paul@dishone.st>
pauledd7c242003-06-04 13:59:38 +0000703- zebra privileges support
704
Martin Wintera5efdb62015-10-29 22:15:42 -0700705* Tue Mar 18 2003 Paul Jakma <paul@dishone.st>
paule0626852003-03-18 14:11:36 +0000706- Fix mem leak in 'show thread cpu'
707- Ralph Keller's OSPF-API
708- Amir: Fix configure.ac for net-snmp
709
paul448ed4a2003-03-01 15:43:28 +0000710* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
711- ospfd IOS prefix to interface matching for 'network' statement
712- temporary fix for PtP and IPv6
713- sync to zebra.org CVS
714
paul8f754982003-01-20 04:55:51 +0000715* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
716- update to latest cvs
717- Yon's "show thread cpu" patch - 17217
718- walk up tree - 17218
719- ospfd NSSA fixes - 16681
720- ospfd nsm fixes - 16824
721- ospfd OLSA fixes and new feature - 16823
722- KAME and ifindex fixes - 16525
723- spec file changes to allow redhat files to be in tree
724
pauld7ccae22003-01-18 00:24:00 +0000725* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
726- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
727- Fixed up some build requirements (patch)
728- Added conditional build requirements for vtysh / snmp
Martin Wintera5efdb62015-10-29 22:15:42 -0700729- Added conditional to files for _bindir depending on vtysh
pauld7ccae22003-01-18 00:24:00 +0000730
paul788cdc62003-01-18 00:22:08 +0000731* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
732- update to latest CVS
733- add Greg Troxel's md5 buffer copy/dup fix
734- add RIPv1 fix
735- add Frank's multicast flag fix
736
737* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
738- update to latest CVS
739- timestamped crypt_seqnum patch
740- oi->on_write_q fix
741
742* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
743- update to latest CVS
744- add vtysh 'write-config (integrated|daemon)' patch
745- always 'make rebuild' in vtysh/ to catch new commands
746
747* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
748- update to 0.93b
749
750* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
751- update to latest CVS
752- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
753
754* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
755- update to current CVS
756- add OSPF point to multipoint patch
757- add OSPF bugfixes
758- add BGP hash optimisation patch
759
760* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
761- update to 0.93-pre1 / CVS
762- add link state detection support
763- add generic PtP and RFC3021 support
764- various bug fixes
765
766* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
767- Fix bug #51336
768
Martin Wintera5efdb62015-10-29 22:15:42 -0700769* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
paul788cdc62003-01-18 00:22:08 +0000770- Use generic initscript strings instead of initscript specific
771 ( "Starting foo: " -> "Starting $prog:" )
772
773* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
774- Bump the release when rebuilding into the dist.
775
776* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
777- built for Powertools
778
779* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
780- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
781- Update to 0.91a
782- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
783- Should be quite Red Hat'isque now.