714e2e9
# These are macros to be usable outside of the build section
714e2e9
%global rpcbind_user_group rpc
714e2e9
%global rpcbind_state_dir %{_rundir}/rpcbind
714e2e9
c671507
Name:           rpcbind
ce8c000
Version:        1.2.5
766e98d
Release:        4.rc1%{?dist}
970296b
Summary:        Universal Addresses to RPC Program Number Mapper
0f199df
License:        BSD
0f1e0e3
URL:            http://nfsv4.bullopensource.org
c671507
d85eb9a
Source0:        http://downloads.sourceforge.net/rpcbind/%{name}-%{version}.tar.bz2
55ba833
Source1: %{name}.sysconfig
c671507
42c9f95
Requires: glibc-common setup
445e49e
Conflicts: man-pages < 2.43-12
641bcf5
BuildRequires: automake, autoconf, libtool, systemd, systemd-devel
cc0a6f2
BuildRequires: libtirpc-devel, quota-devel
eb69b46
Requires(pre): coreutils shadow-utils
d344d78
Requires(post): systemd
2eca485
Requires(preun): systemd
2eca485
Requires(postun): systemd coreutils
c671507
766e98d
Patch001: rpcbind-1.2.5-rc1.patch
aa31180
4ba89e4
Patch100: rpcbind-0.2.3-systemd-envfile.patch
55ba833
Patch101: rpcbind-0.2.3-systemd-tmpfiles.patch
86d0c10
Patch102: rpcbind-0.2.4-runstatdir.patch
74b1a70
Patch103: rpcbind-0.2.4-systemd-service.patch
283abcb
Patch104: rpcbind-0.2.4-systemd-rundir.patch
258db20
b026e72
Provides: portmap = %{version}-%{release}
b026e72
Obsoletes: portmap <= 4.0-65.3
ca3cc0f
c671507
%description
c671507
The rpcbind utility is a server that converts RPC program numbers into
c671507
universal addresses.  It must be running on the host to be able to make
c671507
RPC calls on a server on that machine.
c671507
c671507
%prep
c671507
%setup -q
aa31180
# 1637562 - rpcinfo: Fix stack buffer overflow
aa31180
%patch001 -p1
c671507
4ba89e4
%patch100 -p1
55ba833
%patch101 -p1
86d0c10
%patch102 -p1
74b1a70
%patch103 -p1
283abcb
%patch104 -p1
c671507
%build
c671507
autoreconf -fisv
40319d3
%configure \
434ac98
    --enable-warmstarts \
714e2e9
    --with-statedir="%rpcbind_state_dir" \
714e2e9
    --with-rpcuser="%rpcbind_user_group" \
8e789bd
    --with-nss-modules="files altfiles" \
9ac2b92
    --sbindir=%{_bindir} \
47571c6
    --enable-rmtcalls \
434ac98
    --enable-debug
c671507
c671507
make all
c671507
c671507
%install
e8b92e8
mkdir -p %{buildroot}{%{_sbindir},%{_bindir},/etc/sysconfig}
eb69b46
mkdir -p %{buildroot}%{_unitdir}
55ba833
mkdir -p %{buildroot}%{_tmpfilesdir}
c671507
mkdir -p %{buildroot}%{_mandir}/man8
714e2e9
mkdir -p %{buildroot}%{rpcbind_state_dir}
7bccfbc
make DESTDIR=$RPM_BUILD_ROOT install
c671507
4ba89e4
install -m644 %{SOURCE1} %{buildroot}/etc/sysconfig/rpcbind
c671507
e8b92e8
# The binaries now live in /usr/bin, moving from /usr/sbin
e8b92e8
# For compatibility create a couple symlinks. 
e8b92e8
cd ${RPM_BUILD_ROOT}%{_sbindir}
e8b92e8
ln -sf ../bin/rpcbind
e8b92e8
ln -sf ../bin/rpcinfo
e8b92e8
55ba833
cd28606
%pre
cd28606
058b1d0
# Softly static allocate the rpc uid and gid.
058b1d0
getent group rpc >/dev/null || groupadd -f -g 32 -r rpc
058b1d0
if ! getent passwd rpc >/dev/null ; then
058b1d0
	if ! getent passwd 32 >/dev/null ; then
058b1d0
	   useradd -l -c "Rpcbind Daemon" -d /var/lib/rpcbind  \
058b1d0
	      -g rpc -M -s /sbin/nologin -o -u 32 rpc > /dev/null 2>&1
058b1d0
	else
058b1d0
	   useradd -l -c "Rpcbind Daemon" -d /var/lib/rpcbind  \
058b1d0
	      -g rpc -M -s /sbin/nologin rpc > /dev/null 2>&1
058b1d0
	fi
42c9f95
fi
2eca485
4b3219f
%post
837852e
%systemd_post rpcbind.service rpcbind.socket
c671507
c671507
%preun
2eca485
%systemd_preun rpcbind.service rpcbind.socket
4b3219f
c671507
%postun
2eca485
%systemd_postun_with_restart rpcbind.service rpcbind.socket
c671507
c0f80c5
%triggerin -- rpcbind > 0.2.2-2.0
bbf9314
if systemctl -q is-enabled rpcbind.socket
bbf9314
then
bbf9314
	/bin/systemctl reenable rpcbind.socket  >/dev/null 2>&1 || :
bbf9314
	/bin/systemctl restart rpcbind.socket >/dev/null 2>&1 || :
bbf9314
fi
bc8728c
c671507
%files
d344d78
%license COPYING
283dad3
%config(noreplace) /etc/sysconfig/rpcbind
c671507
%doc AUTHORS ChangeLog README
e8b92e8
%{_bindir}/rpcbind
e8b92e8
%{_bindir}/rpcinfo
e8b92e8
%{_sbindir}/rpcbind
8a2c049
%{_sbindir}/rpcinfo
c671507
%{_mandir}/man8/*
55ba833
%{_unitdir}/%{name}.service
55ba833
%{_unitdir}/%{name}.socket
55ba833
%{_tmpfilesdir}/%{name}.conf
714e2e9
%attr(0700, %{rpcbind_user_group}, %{rpcbind_user_group}) %dir %{rpcbind_state_dir}
c671507
c671507
%changelog
766e98d
* Mon Nov 11 2019 Steve Dickson <steved@redhat.com> - 1.2.5-4.rc1
766e98d
- Updated to latest upstream RC release: rpcbind-1_2_5-rc1 (bz 1431574)
766e98d
47571c6
- Enable remote calls which are used by NIS and other packages (bz 1630672)
47571c6
e371446
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-3
e371446
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e371446
d344d78
* Wed Oct 17 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.5-2
d344d78
- Drop old sys-v migration bits
d344d78
- Ship the license file, minor spec cleanups
d344d78
aa31180
* Tue Oct  9 2018 Steve Dickson <steved@redhat.com> - 1.2.5-1
aa31180
- Fixed stack buffer overflow in rpcinfo (bz 1637562)
aa31180
ce8c000
* Wed Aug 15 2018 Steve Dickson <steved@redhat.com> - 1.2.5-0
ce8c000
- Updated to latest upstream release: 1_2_5
ce8c000
9ee4cac
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-10.rc3.1
9ee4cac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
9ee4cac
40319d3
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 0.2.4-10.rc3
40319d3
- Use default build flags from redhat-rpm-config
40319d3
53c28eb
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-9.rc3.1
53c28eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
53c28eb
cc0a6f2
* Mon Dec 18 2017 Steve Dickson <steved@redhat.com> - 0.2.4-9.rc3
cc0a6f2
- Removed tcp_wrappers dependency (bz 1518780)
cc0a6f2
9ac2b92
* Sat Dec 16 2017 Steve Dickson <steved@redhat.com> - 0.2.4-8.rc3
9ac2b92
- Updated to latest upstream RC release: rpcbind-0_2_5-rc3 (bz 1431574)
9ac2b92
714e2e9
* Wed Sep 06 2017 Nils Philippsen <nils@redhat.com> - 0.2.4-8.rc2
714e2e9
- create and formally own the state directory so it is available from the time
714e2e9
  of first installation until reboot
714e2e9
edd698f
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-7.rc2.2
edd698f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
edd698f
267c9f7
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-7.rc2.1
267c9f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
267c9f7
5604d31
* Tue May 30 2017 Steve Dickson <steved@redhat.com> - 0.2.4-7.rc2
5604d31
- Updated to latest upstream RC release: rpcbind-0_2_5-rc2  (bz 1450765)
5604d31
c9a0876
* Mon May 15 2017 Steve Dickson <steved@redhat.com> - 0.2.4-7.rc1
c9a0876
- Fixed typo in memory leaks patch (bz 1448128)
c9a0876
57c833e
* Thu May 11 2017 Steve Dickson <steved@redhat.com> - 0.2.4-6.rc1
57c833e
- Fixed memory leaks (bz 1448128)
57c833e
283abcb
* Tue Mar 21 2017 Steve Dickson <steved@redhat.com> - 0.2.4-6
283abcb
- Try creating statdir once when opening lock file fails (bz 1401561)
283abcb
07bfa98
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-5
07bfa98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
07bfa98
74b1a70
* Sat Jan 28 2017 Steve Dickson <steved@redhat.com> - 0.2.4-4
74b1a70
- Corrected boot dependency in systemd files (bz 1401561)
74b1a70
bf961fc
* Mon Jan 23 2017 Steve Dickson <steved@redhat.com> - 0.2.4-3
bf961fc
- Create a systemd dependency for tmpfiles-setup.service (bz 1401561)
bf961fc
86d0c10
* Mon Jan 16 2017 Steve Dickson <steved@redhat.com> - 0.2.4-2
86d0c10
- Document /run/rpcbind is the state directory (bz 1401561)
86d0c10
f0e64fa
* Tue Jan  3 2017 Steve Dickson <steved@redhat.com> - 0.2.4-1
f0e64fa
- Fix boot dependency in systemd service file (bz 1401561)
f0e64fa
e8b92e8
* Wed Nov 30 2016 Steve Dickson <steved@redhat.com> - 0.2.4-0
e8b92e8
- Update to the latest upstream release: 0.2.4
e8b92e8
55ba833
* Sat Nov 19 2016 Steve Dickson <steved@redhat.com> - 0.2.3-13.rc2
55ba833
- Create the statedir under /run/rpcbind by systemd-tmpfiles.
55ba833
bbf9314
* Sat Nov 12 2016 Steve Dickson <steved@redhat.com> - 0.2.3-12.rc2
bbf9314
- Stop enable rpcbind.socket with every update (bz 1393721)
bbf9314
4ba89e4
* Mon Nov  7 2016 Steve Dickson <steved@redhat.com> - 0.2.3-11.rc2
4ba89e4
- Updated to the latest RC release rpcbind-0_2_4-rc1
4ba89e4
a2f86fb
* Mon Aug  1 2016 Steve Dickson <steved@redhat.com> - 0.2.3-11.rc1
a2f86fb
- Removing the braces from the ${RPCBIND_ARGS} in rpcbind.service (bz 1362201)
837852e
- Stop enable rpcbind.socket with every update (bz 1324666)
a2f86fb
c0f80c5
* Mon Apr  4 2016 Steve Dickson <steved@redhat.com> - 0.2.3-10.rc1
c0f80c5
- Restart rpcbind.socket on restarts (bz 1306824)
058b1d0
- Soft static allocate rpc uid/gid (bz 1301288)
c0f80c5
64280fb
* Sat Feb 20 2016 Steve Dickson <steved@redhat.com> - 0.2.3-9.rc1
64280fb
- Updated to the latest RC release rpcbind-0_2_4-rc1
64280fb
e2c7f4a
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.3-8
e2c7f4a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e2c7f4a
5e7bfa9
* Wed Nov 18 2015 Steve Dickson <steved@redhat.com> - 0.2.3-7
5e7bfa9
- Delete the unix socket only if we have created it (bz 1279076)
5e7bfa9
e915452
* Tue Nov  3 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.6
e915452
- handle_reply: Don't use the xp_auth pointer directly
e915452
8e789bd
* Mon Nov  2 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.5
8e789bd
- Support nss-altfiles by adding 'altfiles' to nss lookup path (bz 1159941).
8e789bd
258db20
* Mon Nov  2 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.4
258db20
- Fixed Seg fault in PMAP_CALLIT code (bz1264351)
258db20
dd1f5ab
* Sun Nov 01 2015 Kalev Lember <klember@redhat.com> - 0.2.3-0.3
dd1f5ab
- Rebuilt for libtirpc soname bump
dd1f5ab
568baf1
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-0.2
568baf1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
568baf1
f5261c7
* Wed Jun 10 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.0
f5261c7
- Make sure rpcbind.socket always gets enabled (bz 1214496)
f5261c7
da84a3c
* Tue Apr 28 2015 Steve Dickson <steved@redhat.com> - 0.2.3-0.0
da84a3c
- Updated to latest upstream release: 0.2.3
ce0dd7e
- Change RPCBDIR to be /tmp since that will exist after a 
ce0dd7e
  reboot and bindings wil be perserved during upgrades
ce0dd7e
  but not reboots.
da84a3c
ab9778e
* Thu Mar 19 2015 Steve Dickson <steved@redhat.com> - 0.2.2-2.2
ab9778e
- Changed RPCBDIR to be /var/run so bindings are perserved
ab9778e
  during upgrades but not reboots.
bc8728c
- Make sure rpcbind.socket gets enabled
ab9778e
784f00e
* Thu Feb  5 2015 Steve Dickson <steved@redhat.com> - 0.2.2-2.1
784f00e
- Added xlogging debugging to rpcbind
784f00e
77df14f
* Wed Feb  4 2015 Steve Dickson <steved@redhat.com> - 0.2.2-2.0
77df14f
- Updated to the latest rc release: rpcbind-0_2_3-rc1 (bz 1095021)
77df14f
aad80f7
* Wed Dec 17 2014 Steve Dickson <steved@redhat.com> - 0.2.2-1.1
aad80f7
- Fixed NULL fp problem remove error message on warmstart patch
aad80f7
f915d5a
* Tue Dec 16 2014 Steve Dickson <steved@redhat.com> - 0.2.2-1.0
f915d5a
- Updated to the latest rc release: rpcbind-0_2_3-rc1
f915d5a
3d4f9a4
* Wed Nov 26 2014 Steve Dickson <steved@redhat.com> - 0.2.2-0.0
3d4f9a4
- Updated to the latest upstream release: 0.2.2 (bz 747363)
6ee3134
- Added BuildRequires systemd-compat-libs
3d4f9a4
d0c9a6a
* Mon Nov 10 2014 Steve Dickson <steved@redhat.com> - 0.2.1-4.0
d0c9a6a
- Updated to the latest rc release: rpcbind-0_2_2-rc3
d0c9a6a
bfcc0df
* Mon Oct 27 2014 Steve Dickson <steved@redhat.com> - 0.2.1-3.0
bfcc0df
- Updated to the latest rc release: rpcbind-0_2_2-rc2 (bz 1015283)
bfcc0df
2eca485
* Thu Oct 23 2014 Steve Dickson <steved@redhat.com> - 0.2.1-2.1
2eca485
- Stop re-enabling with systemd (bz 1087951)
2eca485
f5896d1
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 0.2.1-2.0
f5896d1
- Rebuild for rpm bug 1131960
f5896d1
8789190
* Mon Aug 18 2014 Steve Dickson <steved@redhat.com> - 0.2.1-1.0
8789190
- Updated to the latest rc release: rpcbind-0_2_2-rc1
8789190
cc32c5a
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-0.4
cc32c5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cc32c5a
8d5da99
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-0.3
8d5da99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8d5da99
43adbc3
* Mon Dec  2 2013 Steve Dickson <steved@redhat.com> - 0.2.1-0.2
43adbc3
- Removed unnecessary targets from rpcbind.service (bz 963189)
43adbc3
62a1cb1
* Wed Aug 21 2013 Steve Dickson <steved@redhat.com> - 0.2.1-0.1
62a1cb1
- Fixed typo in configure.ac file causing rpcuser not to be set.
62a1cb1
675b7af
* Mon Aug 19 2013 Steve Dickson <steved@redhat.com> - 0.2.1-0
675b7af
- Update to the latest upstream release: 0.2.1
675b7af
1b4a964
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-22
1b4a964
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1b4a964
2de3ef7
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-21
2de3ef7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2de3ef7
61bf0fa
* Tue Oct 23 2012 Steve Dickson <steved@redhat.com> - 0.2.0-20
61bf0fa
- Update to the latest upstream release: rpcbind-0_2_1-rc4 (bz 869365)
61bf0fa
38d29a6
* Tue Oct 16 2012 Steve Dickson <steved@redhat.com> - 0.2.0-19
38d29a6
- Renamed RPCBINDOPTS to RPCBIND_ARGS for backward compatibility (bz 861025)
38d29a6
88d609a
* Sun Oct 14 2012 Steve Dickson <steved@redhat.com> - 0.2.0-18
88d609a
- Fixed typo causing rpcbind to run as root (bz 734598)
283dad3
- Added /etc/sysconfig/rpcbind config file (bz 861025)
88d609a
581c250
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-17
581c250
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
581c250
21fb790
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-16
21fb790
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
21fb790
255f05b
* Mon Sep 12 2011 Steve Dickson <steved@redhat.com> - 0.2.0-15
255f05b
- Bumped up the tigger version to this version, 0.2.0-15 (bz 713574)
255f05b
4b3219f
* Fri Sep  9 2011 Tom Callaway <spot@fedoraproject.org> - 0.2.0-14
4b3219f
- fix scriptlets to enable service by default
4b3219f
eb69b46
* Fri Jul  8 2011 Steve Dickson <steved@redhat.com> - 0.2.0-13
eb69b46
- Spec file clean up
eb69b46
4d358c9
* Thu Jul  7 2011 Steve Dickson <steved@redhat.com> - 0.2.0-12
4d358c9
- Migrated SysV initscripts to systemd (bz 713574)
4d358c9
3dd7e69
* Thu Mar 17 2011 Steve Dickson <steved@redhat.com> - 0.2.0-11
3dd7e69
- Updated to the latest upstream release: rpcbind-0_2_1-rc3
3dd7e69
bec76d5
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-10
bec76d5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
bec76d5
390a5c7
* Mon Dec 13 2010 Steve Dickson <steved@redhat.com> - 0.2.0-9
390a5c7
- Fixed an incorrect exit code for service rpcbind status (bz 662411)
390a5c7
7bccfbc
* Tue Nov 30 2010 Steve Dickson <steved@redhat.com> - 0.2.0-8
7bccfbc
- Updated to the latest upstream release: rpcbind-0.2.1-rc2
7bccfbc
0f199df
* Fri Jul 16 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 0.2.0-7
0f199df
- correct license tag to BSD
0f199df
940cb45
* Tue Jul 13 2010 Steve Dickson <steved@redhat.com> - 0.2.0-6
940cb45
- Made initscript LSB compliant (bz 614193)
940cb45
- Added no fork patch
940cb45
3c85c93
* Tue Jul  6 2010 Steve Dickson <steved@redhat.com> - 0.2.0-5
3c85c93
- Set SO_REUSEADDR on listening sockets (bz 597356)
3c85c93
1bccd3a
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-4
1bccd3a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1bccd3a
dfcb33f
* Mon Jul 06 2009 Adam Jackson <ajax@redhat.com> 0.2.0-3
dfcb33f
- Requires(pre): coreutils for cut(1).
dfcb33f
42c9f95
* Thu Jun 25 2009 Steve Dickson <steved@redhat.com> - 0.2.0-2
42c9f95
- Fixed pre scriptle failure during upgrades (bz 507364)
42c9f95
- Corrected the usage info to match what the rpcbind man
42c9f95
    page says. (bz 466332)
42c9f95
- Correct package issues (bz 503508)
42c9f95
a093c95
* Fri May 29 2009 Steve Dickson <steved@redhat.com> - 0.2.0-1
a093c95
- Updated to latest upstream release: 0.2.0
a093c95
b60b288
* Tue May 19 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 0.1.7-3
b60b288
- Replace the Sun RPC license with the BSD license, with the explicit permission of Sun Microsystems
b60b288
46b5fac
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.7-2
46b5fac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
46b5fac
208b1ff
* Wed Nov 19 2008 Steve Dickson <steved@redhat.com>  0.1.7-1
208b1ff
- Update to latest upstream release: 0.1.7
208b1ff
d9a0d64
* Tue Sep 30 2008 Steve Dickson <steved@redhat.com>  0.1.6-3
d9a0d64
- Fixed a typo in the rpcbind.init script that stop warm starts
d9a0d64
  from happening with conrestarts
eb199b6
- Fixed scriptlet failure (bz 462533)
d9a0d64
e10053c
* Tue Sep 16 2008 Steve Dickson <steved@redhat.com> 0.1.6-2
e10053c
- Added usptream patches 01 thru 03 that do:
e10053c
    * Introduce helpers for ipprot/netid mapping
e10053c
    * Change how we decide on the netids to use for portmap
e10053c
    * Simplify port live check in pmap_svc.c
e10053c
6a551c2
* Wed Jul  9 2008 Steve Dickson <steved@redhat.com> 0.1.6-1
6a551c2
- Updated to latest upstream release 0.1.6
6a551c2
46da9bb
* Wed Jul  2 2008 Steve Dickson <steved@redhat.com> 0.1.5-5
46da9bb
- Fixed SYNOPSIS section in the rpcinfo man page (bz 453729)
46da9bb
3de7950
* Fri Jun 27 2008 Steve Dickson <steved@redhat.com> 0.1.5-4
3de7950
- Removed the documentation about the non-existent 
3de7950
  '-L' flag (bz 446915)
3de7950
33e86f3
* Fri Jun 27 2008 Steve Dickson <steved@redhat.com> 0.1.5-3
33e86f3
- Set password and service lookups to be local (bz 447092)
33e86f3
33e86f3
* Mon Jun 23 2008 Steve Dickson <steved@redhat.com> 0.1.5-2
27d02e3
- rpcbind needs to downgrade to non-priviledgied group.
27d02e3
27d02e3
* Mon Jun 23 2008 Steve Dickson <steved@redhat.com> 0.1.5-1
d85eb9a
- Updated to latest upstream release 0.1.5
d85eb9a
604a14b
* Mon Feb 11 2008 Steve Dickson <steved@redhat.com> 0.1.4-14
604a14b
- Fixed a warning in pmap_svc.c
604a14b
- Cleaned up warmstarts so uid are longer needed, also
604a14b
  changed condrestarts to use warmstarts. (bz 428496)
604a14b
304cd9a
* Thu Jan 24 2008 Steve Dickson <steved@redhat.com> 0.1.4-13
304cd9a
- Fixed connectivity with Mac OS clients by making sure handle_reply()
304cd9a
  sets the correct fromlen in its recvfrom() call (bz 244492)
304cd9a
491d3c0
* Mon Dec 17 2007 Steve Dickson <steved@redhat.com> 0.1.4-12
491d3c0
- Changed is_loopback() and check_access() see if the calling
491d3c0
  address is an address on a local interface, just not a loopback
491d3c0
  address (bz 358621).
491d3c0
33dfe4f
* Wed Oct 17 2007 Steve Dickson <steved@redhat.com> 0.1.4-11
33dfe4f
- Reworked logic in initscript so the correct exit is 
33dfe4f
  used when networking does not exist or is set up
33dfe4f
  incorrectly.
33dfe4f
b4db9b3
* Tue Oct 16 2007 Steve Dickson <steved@redhat.com> 0.1.4-10
b4db9b3
- Corrected a typo in the initscript from previous 
b4db9b3
  commit.
b4db9b3
970296b
* Mon Oct 15 2007 Steve Dickson <steved@redhat.com> 0.1.4-9
970296b
- Fixed typo in Summary (bz 331811)
970296b
- Corrected init script (bz 247046)
970296b
f4e8f18
* Sat Sep 15 2007 Steve Dickson <steved@redhat.com> 0.1.4-8
e9338cb
- Fixed typo in init script (bz 248285)
f4e8f18
- Added autoconf rules to turn on secure host checking
f4e8f18
  via libwrap. Also turned on host check by default (bz 248284)
6c2c090
- Changed init script to start service in runlevel 2 (bz 251568)
4d36567
- Added a couple missing Requires(pre) (bz 247134)
6c2c090
a9ce663
* Fri May 25 2007 Steve Dickson <steved@redhat.com> 0.1.4-7
a9ce663
- Fixed condrestarts (bz 241332)
a9ce663
bb33986
* Tue May 22 2007 Steve Dickson <steved@redhat.com> 0.1.4-6
bb33986
- Fixed an ipv6 related segfault on startup (bz 240873)
bb33986
b031d84
* Wed Apr 18 2007 Steve Dickson <steved@redhat.com> 0.1.4-5
b031d84
- Added dependency on setup which contains the correct
b031d84
  rpcbind /etc/service entry which in turns stops 
b031d84
  rpcbind from haning when NIS is enabled. (bz 236865)
b031d84
445e49e
* Wed Apr 11 2007 Jeremy Katz <katzj@redhat.com> - 0.1.4-4
445e49e
- change man-pages requires into a conflicts as we don't have to have 
445e49e
  man-pages installed, but if we do, we need the newer version
445e49e
b026e72
* Fri Apr  6 2007 Steve Dickson <steved@redhat.com> 0.1.4-3
b026e72
- Fixed the Provides and Obsoletes statments to correctly
b026e72
  obsolete the portmap package.
f766b07
* Tue Apr  3 2007 Steve Dickson <steved@redhat.com> 0.1.4-2
8a2c049
- Added dependency on glibc-common which allows the
8a2c049
  rpcinfo command to be installed in the correct place.
cd28606
- Added dependency on man-pages so the rpcinfo man 
cd28606
  pages don't conflict.
11b0919
- Added the creation of /var/lib/rpcbind which will be
cd28606
  used to store state files.
5af042e
- Make rpcbind run with the 'rpc' uid/gid when it exists.
8a2c049
434ac98
* Wed Feb 21 2007 Steve Dickson <steved@redhat.com> 0.1.4-1
c671507
- Initial commit
434ac98
- Spec reviewed (bz 228894)
ca3cc0f
- Added the Provides/Obsoletes which should
ca3cc0f
  cause rpcbind to replace portmapper