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