be52fe
# These are macros to be usable outside of the build section
be52fe
%global rpcbind_user_group rpc
be52fe
%global rpcbind_state_dir %{_rundir}/rpcbind
be52fe
be52fe
Name:           rpcbind
be52fe
Version:        1.2.5
1b628f
Release:        7%{?dist}
be52fe
Summary:        Universal Addresses to RPC Program Number Mapper
be52fe
Group:          System Environment/Daemons
be52fe
License:        BSD
be52fe
URL:            http://git.linux-nfs.org/?p=steved/rpcbind.git;a=summary
be52fe
be52fe
Source0:        http://downloads.sourceforge.net/rpcbind/%{name}-%{version}.tar.bz2
be52fe
Source1: %{name}.sysconfig
be52fe
be52fe
Requires: glibc-common setup
be52fe
Conflicts: man-pages < 2.43-12
be52fe
BuildRequires: automake, autoconf, libtool, systemd, systemd-devel
be52fe
BuildRequires: libtirpc-devel, quota-devel
be52fe
Requires(pre): coreutils shadow-utils
be52fe
Requires(post): chkconfig systemd policycoreutils
be52fe
Requires(preun): systemd
be52fe
Requires(postun): systemd coreutils
be52fe
be52fe
#
be52fe
# RHEL 8.0
be52fe
#
be52fe
Patch001: rpcbind-1.2.5-rpcinfo-bufoverflow.patch
be52fe
1b628f
#
1b628f
# RHEL 8.2
1b628f
#
1b628f
Patch002: rpcbind-1.2.5-covscan-resource-leaks.patch
1b628f
be52fe
Patch100: rpcbind-0.2.3-systemd-envfile.patch
be52fe
Patch101: rpcbind-0.2.3-systemd-tmpfiles.patch
be52fe
Patch102: rpcbind-0.2.4-runstatdir.patch
be52fe
Patch103: rpcbind-0.2.4-systemd-service.patch
be52fe
Patch104: rpcbind-0.2.4-systemd-rundir.patch
be52fe
be52fe
Provides: portmap = %{version}-%{release}
be52fe
Obsoletes: portmap <= 4.0-65.3
be52fe
be52fe
%description
be52fe
The rpcbind utility is a server that converts RPC program numbers into
be52fe
universal addresses.  It must be running on the host to be able to make
be52fe
RPC calls on a server on that machine.
be52fe
be52fe
%prep
be52fe
%setup -q
be52fe
be52fe
# 1637565 - rpcinfo: Fix stack buffer overflow 
be52fe
%patch001 -p1
be52fe
1b628f
# 1602680 - Please review important issues found by covscan...
1b628f
%patch002 -p1
1b628f
be52fe
%patch100 -p1
be52fe
%patch101 -p1
be52fe
%patch102 -p1
be52fe
%patch103 -p1
be52fe
%patch104 -p1
be52fe
%build
be52fe
autoreconf -fisv
be52fe
%configure \
be52fe
    --enable-warmstarts \
be52fe
    --with-statedir="%rpcbind_state_dir" \
be52fe
    --with-rpcuser="%rpcbind_user_group" \
be52fe
    --with-nss-modules="files altfiles" \
be52fe
    --sbindir=%{_bindir} \
be52fe
    --enable-debug
be52fe
be52fe
make all
be52fe
be52fe
%install
be52fe
rm -rf %{buildroot}
be52fe
mkdir -p %{buildroot}{%{_sbindir},%{_bindir},/etc/sysconfig}
be52fe
mkdir -p %{buildroot}%{_unitdir}
be52fe
mkdir -p %{buildroot}%{_tmpfilesdir}
be52fe
mkdir -p %{buildroot}%{_mandir}/man8
be52fe
mkdir -p %{buildroot}%{rpcbind_state_dir}
be52fe
make DESTDIR=$RPM_BUILD_ROOT install
be52fe
be52fe
install -m644 %{SOURCE1} %{buildroot}/etc/sysconfig/rpcbind
be52fe
be52fe
# The binaries now live in /usr/bin, moving from /usr/sbin
be52fe
# For compatibility create a couple symlinks. 
be52fe
cd ${RPM_BUILD_ROOT}%{_sbindir}
be52fe
ln -sf ../bin/rpcbind
be52fe
ln -sf ../bin/rpcinfo
be52fe
be52fe
be52fe
%pre
be52fe
be52fe
# Softly static allocate the rpc uid and gid.
be52fe
getent group rpc >/dev/null || groupadd -f -g 32 -r rpc
be52fe
if ! getent passwd rpc >/dev/null ; then
be52fe
	if ! getent passwd 32 >/dev/null ; then
be52fe
	   useradd -l -c "Rpcbind Daemon" -d /var/lib/rpcbind  \
be52fe
	      -g rpc -M -s /sbin/nologin -o -u 32 rpc > /dev/null 2>&1
be52fe
	else
be52fe
	   useradd -l -c "Rpcbind Daemon" -d /var/lib/rpcbind  \
be52fe
	      -g rpc -M -s /sbin/nologin rpc > /dev/null 2>&1
be52fe
	fi
be52fe
fi
be52fe
be52fe
%post
be52fe
%systemd_post rpcbind.service rpcbind.socket
be52fe
be52fe
%preun
be52fe
%systemd_preun rpcbind.service rpcbind.socket
be52fe
be52fe
%postun
be52fe
%systemd_postun_with_restart rpcbind.service rpcbind.socket
be52fe
be52fe
%triggerun -- rpcbind < 0.2.0-15
be52fe
%{_bindir}/systemd-sysv-convert --save rpcbind >/dev/null 2>&1 ||:
be52fe
/bin/systemctl --no-reload enable rpcbind.service >/dev/null 2>&1
be52fe
/sbin/chkconfig --del rpcbind >/dev/null 2>&1 || :
be52fe
/bin/systemctl try-restart rpcbind.service >/dev/null 2>&1 || :
be52fe
be52fe
%triggerin -- rpcbind > 0.2.2-2.0
be52fe
if systemctl -q is-enabled rpcbind.socket
be52fe
then
be52fe
	/bin/systemctl reenable rpcbind.socket  >/dev/null 2>&1 || :
be52fe
	/bin/systemctl restart rpcbind.socket >/dev/null 2>&1 || :
be52fe
fi
be52fe
if [ ! -d /var/lib/rpcbind ]
be52fe
then
be52fe
	mkdir /var/lib/rpcbind
be52fe
	chown rpc:rpc /var/lib/rpcbind
be52fe
	[ -x /usr/sbin/restorecon ] && \
be52fe
		/usr/sbin/restorecon /var/lib/rpcbind
be52fe
fi
be52fe
be52fe
be52fe
%files
be52fe
%defattr(-,root,root)
be52fe
%config(noreplace) /etc/sysconfig/rpcbind
be52fe
%doc AUTHORS ChangeLog README
be52fe
%{_bindir}/rpcbind
be52fe
%{_bindir}/rpcinfo
be52fe
%{_sbindir}/rpcbind
be52fe
%{_sbindir}/rpcinfo
be52fe
%{_mandir}/man8/*
be52fe
%{_unitdir}/%{name}.service
be52fe
%{_unitdir}/%{name}.socket
be52fe
%{_tmpfilesdir}/%{name}.conf
be52fe
%attr(0700, %{rpcbind_user_group}, %{rpcbind_user_group}) %dir %{rpcbind_state_dir}
be52fe
be52fe
%changelog
1b628f
* Thu Feb  6 2020 Steve Dickson <steved@redhat.com> - 1.2.5-7
1b628f
- Clean up a error path found by a covscan (bz 1602680)
1b628f
1b628f
* Thu Jan 16 2020 Steve Dickson <steved@redhat.com> - 1.2.5-6
1b628f
- Use sysconfig variable in service file (bz 1764985)
1b628f
1b628f
* Mon Nov 11 2019 Steve Dickson <steved@redhat.com> - 1.2.5-5
1b628f
- Removed some issues found by covscan (bz 1602680)
1b628f
7caecb
* Fri Jul 26 2019 Steve Dickson <steved@redhat.com> - 1.2.5-4
7caecb
- Enable gating using reverse dependency testing of nfs-utils (bz 1681967
7caecb
be52fe
* Sat Oct 20 2018 Steve Dickson <steved@redhat.com> - 1.2.5-3
be52fe
- Update the URL (bz 1638664)
be52fe
be52fe
* Mon Oct 15 2018 Josh Boyer <jwboyer@redhat.com> - 1.2.5-2
be52fe
- Make sure policycoreutils is installed before using it (bz 1628901)
be52fe
be52fe
* Wed Oct 10 2018 Steve Dickson <steved@redhat.com> - 1.2.5-1
be52fe
- Fixed stack buffer overflow in rpcinfo (bz 1637565)
be52fe
- Make sure /var/lib/rpcbind exists (bz 1628901)
be52fe
be52fe
* Tue Aug 21 2018 Steve Dickson <steved@redhat.com> - 1.2.5-0
be52fe
- Updated to upstream lastest release: 1_2_5 (bz 1605131)
be52fe
be52fe
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 0.2.4-10.rc3
be52fe
- Use default build flags from redhat-rpm-config
be52fe
be52fe
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-9.rc3.1
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
be52fe
be52fe
* Mon Dec 18 2017 Steve Dickson <steved@redhat.com> - 0.2.4-9.rc3
be52fe
- Removed tcp_wrappers dependency (bz 1518780)
be52fe
be52fe
* Sat Dec 16 2017 Steve Dickson <steved@redhat.com> - 0.2.4-8.rc3
be52fe
- Updated to latest upstream RC release: rpcbind-0_2_5-rc3 (bz 1431574)
be52fe
be52fe
* Wed Sep 06 2017 Nils Philippsen <nils@redhat.com> - 0.2.4-8.rc2
be52fe
- create and formally own the state directory so it is available from the time
be52fe
  of first installation until reboot
be52fe
be52fe
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-7.rc2.2
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
be52fe
be52fe
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-7.rc2.1
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
be52fe
be52fe
* Tue May 30 2017 Steve Dickson <steved@redhat.com> - 0.2.4-7.rc2
be52fe
- Updated to latest upstream RC release: rpcbind-0_2_5-rc2  (bz 1450765)
be52fe
be52fe
* Mon May 15 2017 Steve Dickson <steved@redhat.com> - 0.2.4-7.rc1
be52fe
- Fixed typo in memory leaks patch (bz 1448128)
be52fe
be52fe
* Thu May 11 2017 Steve Dickson <steved@redhat.com> - 0.2.4-6.rc1
be52fe
- Fixed memory leaks (bz 1448128)
be52fe
be52fe
* Tue Mar 21 2017 Steve Dickson <steved@redhat.com> - 0.2.4-6
be52fe
- Try creating statdir once when opening lock file fails (bz 1401561)
be52fe
be52fe
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-5
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
be52fe
be52fe
* Sat Jan 28 2017 Steve Dickson <steved@redhat.com> - 0.2.4-4
be52fe
- Corrected boot dependency in systemd files (bz 1401561)
be52fe
be52fe
* Mon Jan 23 2017 Steve Dickson <steved@redhat.com> - 0.2.4-3
be52fe
- Create a systemd dependency for tmpfiles-setup.service (bz 1401561)
be52fe
be52fe
* Mon Jan 16 2017 Steve Dickson <steved@redhat.com> - 0.2.4-2
be52fe
- Document /run/rpcbind is the state directory (bz 1401561)
be52fe
be52fe
* Tue Jan  3 2017 Steve Dickson <steved@redhat.com> - 0.2.4-1
be52fe
- Fix boot dependency in systemd service file (bz 1401561)
be52fe
be52fe
* Wed Nov 30 2016 Steve Dickson <steved@redhat.com> - 0.2.4-0
be52fe
- Update to the latest upstream release: 0.2.4
be52fe
be52fe
* Sat Nov 19 2016 Steve Dickson <steved@redhat.com> - 0.2.3-13.rc2
be52fe
- Create the statedir under /run/rpcbind by systemd-tmpfiles.
be52fe
be52fe
* Sat Nov 12 2016 Steve Dickson <steved@redhat.com> - 0.2.3-12.rc2
be52fe
- Stop enable rpcbind.socket with every update (bz 1393721)
be52fe
be52fe
* Mon Nov  7 2016 Steve Dickson <steved@redhat.com> - 0.2.3-11.rc2
be52fe
- Updated to the latest RC release rpcbind-0_2_4-rc1
be52fe
be52fe
* Mon Aug  1 2016 Steve Dickson <steved@redhat.com> - 0.2.3-11.rc1
be52fe
- Removing the braces from the ${RPCBIND_ARGS} in rpcbind.service (bz 1362201)
be52fe
- Stop enable rpcbind.socket with every update (bz 1324666)
be52fe
be52fe
* Mon Apr  4 2016 Steve Dickson <steved@redhat.com> - 0.2.3-10.rc1
be52fe
- Restart rpcbind.socket on restarts (bz 1306824)
be52fe
- Soft static allocate rpc uid/gid (bz 1301288)
be52fe
be52fe
* Sat Feb 20 2016 Steve Dickson <steved@redhat.com> - 0.2.3-9.rc1
be52fe
- Updated to the latest RC release rpcbind-0_2_4-rc1
be52fe
be52fe
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.3-8
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
be52fe
be52fe
* Wed Nov 18 2015 Steve Dickson <steved@redhat.com> - 0.2.3-7
be52fe
- Delete the unix socket only if we have created it (bz 1279076)
be52fe
be52fe
* Tue Nov  3 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.6
be52fe
- handle_reply: Don't use the xp_auth pointer directly
be52fe
be52fe
* Mon Nov  2 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.5
be52fe
- Support nss-altfiles by adding 'altfiles' to nss lookup path (bz 1159941).
be52fe
be52fe
* Mon Nov  2 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.4
be52fe
- Fixed Seg fault in PMAP_CALLIT code (bz1264351)
be52fe
be52fe
* Sun Nov 01 2015 Kalev Lember <klember@redhat.com> - 0.2.3-0.3
be52fe
- Rebuilt for libtirpc soname bump
be52fe
be52fe
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-0.2
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
be52fe
be52fe
* Wed Jun 10 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.0
be52fe
- Make sure rpcbind.socket always gets enabled (bz 1214496)
be52fe
be52fe
* Tue Apr 28 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.0
be52fe
- Updated to latest upstream release: 0.2.3
be52fe
- Change RPCBDIR to be /tmp since that will exist after a 
be52fe
  reboot and bindings wil be perserved during upgrades
be52fe
  but not reboots.
be52fe
be52fe
* Thu Mar 19 2015 Steve Dickson <steved@redhat.com> - 0.2.2-2.2
be52fe
- Changed RPCBDIR to be /var/run so bindings are perserved
be52fe
  during upgrades but not reboots.
be52fe
- Make sure rpcbind.socket gets enabled
be52fe
be52fe
* Thu Feb  5 2015 Steve Dickson <steved@redhat.com> - 0.2.2-2.1
be52fe
- Added xlogging debugging to rpcbind
be52fe
be52fe
* Wed Feb  4 2015 Steve Dickson <steved@redhat.com> - 0.2.2-2.0
be52fe
- Updated to the latest rc release: rpcbind-0_2_3-rc1 (bz 1095021)
be52fe
be52fe
* Wed Dec 17 2014 Steve Dickson <steved@redhat.com> - 0.2.2-1.1
be52fe
- Fixed NULL fp problem remove error message on warmstart patch
be52fe
be52fe
* Tue Dec 16 2014 Steve Dickson <steved@redhat.com> - 0.2.2-1.0
be52fe
- Updated to the latest rc release: rpcbind-0_2_3-rc1
be52fe
be52fe
* Wed Nov 26 2014 Steve Dickson <steved@redhat.com> - 0.2.2-0.0
be52fe
- Updated to the latest upstream release: 0.2.2 (bz 747363)
be52fe
- Added BuildRequires systemd-compat-libs
be52fe
be52fe
* Mon Nov 10 2014 Steve Dickson <steved@redhat.com> - 0.2.1-4.0
be52fe
- Updated to the latest rc release: rpcbind-0_2_2-rc3
be52fe
be52fe
* Mon Oct 27 2014 Steve Dickson <steved@redhat.com> - 0.2.1-3.0
be52fe
- Updated to the latest rc release: rpcbind-0_2_2-rc2 (bz 1015283)
be52fe
be52fe
* Thu Oct 23 2014 Steve Dickson <steved@redhat.com> - 0.2.1-2.1
be52fe
- Stop re-enabling with systemd (bz 1087951)
be52fe
be52fe
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 0.2.1-2.0
be52fe
- Rebuild for rpm bug 1131960
be52fe
be52fe
* Mon Aug 18 2014 Steve Dickson <steved@redhat.com> - 0.2.1-1.0
be52fe
- Updated to the latest rc release: rpcbind-0_2_2-rc1
be52fe
be52fe
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-0.4
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
be52fe
be52fe
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-0.3
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
be52fe
be52fe
* Mon Dec  2 2013 Steve Dickson <steved@redhat.com> - 0.2.1-0.2
be52fe
- Removed unnecessary targets from rpcbind.service (bz 963189)
be52fe
be52fe
* Wed Aug 21 2013 Steve Dickson <steved@redhat.com> - 0.2.1-0.1
be52fe
- Fixed typo in configure.ac file causing rpcuser not to be set.
be52fe
be52fe
* Mon Aug 19 2013 Steve Dickson <steved@redhat.com> - 0.2.1-0
be52fe
- Update to the latest upstream release: 0.2.1
be52fe
be52fe
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-22
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
be52fe
be52fe
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-21
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
be52fe
be52fe
* Tue Oct 23 2012 Steve Dickson <steved@redhat.com> - 0.2.0-20
be52fe
- Update to the latest upstream release: rpcbind-0_2_1-rc4 (bz 869365)
be52fe
be52fe
* Tue Oct 16 2012 Steve Dickson <steved@redhat.com> - 0.2.0-19
be52fe
- Renamed RPCBINDOPTS to RPCBIND_ARGS for backward compatibility (bz 861025)
be52fe
be52fe
* Sun Oct 14 2012 Steve Dickson <steved@redhat.com> - 0.2.0-18
be52fe
- Fixed typo causing rpcbind to run as root (bz 734598)
be52fe
- Added /etc/sysconfig/rpcbind config file (bz 861025)
be52fe
be52fe
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-17
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
be52fe
be52fe
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-16
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
be52fe
be52fe
* Mon Sep 12 2011 Steve Dickson <steved@redhat.com> - 0.2.0-15
be52fe
- Bumped up the tigger version to this version, 0.2.0-15 (bz 713574)
be52fe
be52fe
* Fri Sep  9 2011 Tom Callaway <spot@fedoraproject.org> - 0.2.0-14
be52fe
- fix scriptlets to enable service by default
be52fe
be52fe
* Fri Jul  8 2011 Steve Dickson <steved@redhat.com> - 0.2.0-13
be52fe
- Spec file clean up
be52fe
be52fe
* Thu Jul  7 2011 Steve Dickson <steved@redhat.com> - 0.2.0-12
be52fe
- Migrated SysV initscripts to systemd (bz 713574)
be52fe
be52fe
* Thu Mar 17 2011 Steve Dickson <steved@redhat.com> - 0.2.0-11
be52fe
- Updated to the latest upstream release: rpcbind-0_2_1-rc3
be52fe
be52fe
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-10
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
be52fe
be52fe
* Mon Dec 13 2010 Steve Dickson <steved@redhat.com> - 0.2.0-9
be52fe
- Fixed an incorrect exit code for service rpcbind status (bz 662411)
be52fe
be52fe
* Tue Nov 30 2010 Steve Dickson <steved@redhat.com> - 0.2.0-8
be52fe
- Updated to the latest upstream release: rpcbind-0.2.1-rc2
be52fe
be52fe
* Fri Jul 16 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 0.2.0-7
be52fe
- correct license tag to BSD
be52fe
be52fe
* Tue Jul 13 2010 Steve Dickson <steved@redhat.com> - 0.2.0-6
be52fe
- Made initscript LSB compliant (bz 614193)
be52fe
- Added no fork patch
be52fe
be52fe
* Tue Jul  6 2010 Steve Dickson <steved@redhat.com> - 0.2.0-5
be52fe
- Set SO_REUSEADDR on listening sockets (bz 597356)
be52fe
be52fe
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-4
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
be52fe
be52fe
* Mon Jul 06 2009 Adam Jackson <ajax@redhat.com> 0.2.0-3
be52fe
- Requires(pre): coreutils for cut(1).
be52fe
be52fe
* Thu Jun 25 2009 Steve Dickson <steved@redhat.com> - 0.2.0-2
be52fe
- Fixed pre scriptle failure during upgrades (bz 507364)
be52fe
- Corrected the usage info to match what the rpcbind man
be52fe
    page says. (bz 466332)
be52fe
- Correct package issues (bz 503508)
be52fe
be52fe
* Fri May 29 2009 Steve Dickson <steved@redhat.com> - 0.2.0-1
be52fe
- Updated to latest upstream release: 0.2.0
be52fe
be52fe
* Tue May 19 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 0.1.7-3
be52fe
- Replace the Sun RPC license with the BSD license, with the explicit permission of Sun Microsystems
be52fe
be52fe
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.7-2
be52fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
be52fe
be52fe
* Wed Nov 19 2008 Steve Dickson <steved@redhat.com>  0.1.7-1
be52fe
- Update to latest upstream release: 0.1.7
be52fe
be52fe
* Tue Sep 30 2008 Steve Dickson <steved@redhat.com>  0.1.6-3
be52fe
- Fixed a typo in the rpcbind.init script that stop warm starts
be52fe
  from happening with conrestarts
be52fe
- Fixed scriptlet failure (bz 462533)
be52fe
be52fe
* Tue Sep 16 2008 Steve Dickson <steved@redhat.com> 0.1.6-2
be52fe
- Added usptream patches 01 thru 03 that do:
be52fe
    * Introduce helpers for ipprot/netid mapping
be52fe
    * Change how we decide on the netids to use for portmap
be52fe
    * Simplify port live check in pmap_svc.c
be52fe
be52fe
* Wed Jul  9 2008 Steve Dickson <steved@redhat.com> 0.1.6-1
be52fe
- Updated to latest upstream release 0.1.6
be52fe
be52fe
* Wed Jul  2 2008 Steve Dickson <steved@redhat.com> 0.1.5-5
be52fe
- Fixed SYNOPSIS section in the rpcinfo man page (bz 453729)
be52fe
be52fe
* Fri Jun 27 2008 Steve Dickson <steved@redhat.com> 0.1.5-4
be52fe
- Removed the documentation about the non-existent 
be52fe
  '-L' flag (bz 446915)
be52fe
be52fe
* Fri Jun 27 2008 Steve Dickson <steved@redhat.com> 0.1.5-3
be52fe
- Set password and service lookups to be local (bz 447092)
be52fe
be52fe
* Mon Jun 23 2008 Steve Dickson <steved@redhat.com> 0.1.5-2
be52fe
- rpcbind needs to downgrade to non-priviledgied group.
be52fe
be52fe
* Mon Jun 23 2008 Steve Dickson <steved@redhat.com> 0.1.5-1
be52fe
- Updated to latest upstream release 0.1.5
be52fe
be52fe
* Mon Feb 11 2008 Steve Dickson <steved@redhat.com> 0.1.4-14
be52fe
- Fixed a warning in pmap_svc.c
be52fe
- Cleaned up warmstarts so uid are longer needed, also
be52fe
  changed condrestarts to use warmstarts. (bz 428496)
be52fe
be52fe
* Thu Jan 24 2008 Steve Dickson <steved@redhat.com> 0.1.4-13
be52fe
- Fixed connectivity with Mac OS clients by making sure handle_reply()
be52fe
  sets the correct fromlen in its recvfrom() call (bz 244492)
be52fe
be52fe
* Mon Dec 17 2007 Steve Dickson <steved@redhat.com> 0.1.4-12
be52fe
- Changed is_loopback() and check_access() see if the calling
be52fe
  address is an address on a local interface, just not a loopback
be52fe
  address (bz 358621).
be52fe
be52fe
* Wed Oct 17 2007 Steve Dickson <steved@redhat.com> 0.1.4-11
be52fe
- Reworked logic in initscript so the correct exit is 
be52fe
  used when networking does not exist or is set up
be52fe
  incorrectly.
be52fe
be52fe
* Tue Oct 16 2007 Steve Dickson <steved@redhat.com> 0.1.4-10
be52fe
- Corrected a typo in the initscript from previous 
be52fe
  commit.
be52fe
be52fe
* Mon Oct 15 2007 Steve Dickson <steved@redhat.com> 0.1.4-9
be52fe
- Fixed typo in Summary (bz 331811)
be52fe
- Corrected init script (bz 247046)
be52fe
be52fe
* Sat Sep 15 2007 Steve Dickson <steved@redhat.com> 0.1.4-8
be52fe
- Fixed typo in init script (bz 248285)
be52fe
- Added autoconf rules to turn on secure host checking
be52fe
  via libwrap. Also turned on host check by default (bz 248284)
be52fe
- Changed init script to start service in runlevel 2 (bz 251568)
be52fe
- Added a couple missing Requires(pre) (bz 247134)
be52fe
be52fe
* Fri May 25 2007 Steve Dickson <steved@redhat.com> 0.1.4-7
be52fe
- Fixed condrestarts (bz 241332)
be52fe
be52fe
* Tue May 22 2007 Steve Dickson <steved@redhat.com> 0.1.4-6
be52fe
- Fixed an ipv6 related segfault on startup (bz 240873)
be52fe
be52fe
* Wed Apr 18 2007 Steve Dickson <steved@redhat.com> 0.1.4-5
be52fe
- Added dependency on setup which contains the correct
be52fe
  rpcbind /etc/service entry which in turns stops 
be52fe
  rpcbind from haning when NIS is enabled. (bz 236865)
be52fe
be52fe
* Wed Apr 11 2007 Jeremy Katz <katzj@redhat.com> - 0.1.4-4
be52fe
- change man-pages requires into a conflicts as we don't have to have 
be52fe
  man-pages installed, but if we do, we need the newer version
be52fe
be52fe
* Fri Apr  6 2007 Steve Dickson <steved@redhat.com> 0.1.4-3
be52fe
- Fixed the Provides and Obsoletes statments to correctly
be52fe
  obsolete the portmap package.
be52fe
* Tue Apr  3 2007 Steve Dickson <steved@redhat.com> 0.1.4-2
be52fe
- Added dependency on glibc-common which allows the
be52fe
  rpcinfo command to be installed in the correct place.
be52fe
- Added dependency on man-pages so the rpcinfo man 
be52fe
  pages don't conflict.
be52fe
- Added the creation of /var/lib/rpcbind which will be
be52fe
  used to store state files.
be52fe
- Make rpcbind run with the 'rpc' uid/gid when it exists.
be52fe
be52fe
* Wed Feb 21 2007 Steve Dickson <steved@redhat.com> 0.1.4-1
be52fe
- Initial commit
be52fe
- Spec reviewed (bz 228894)
be52fe
- Added the Provides/Obsoletes which should
be52fe
  cause rpcbind to replace portmapper