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