c671507
Name:           rpcbind
feb680b
Version:        0.2.4
dec446a
Release:        6.rc1%{?dist}
970296b
Summary:        Universal Addresses to RPC Program Number Mapper
c671507
Group:          System Environment/Daemons
0f199df
License:        BSD
0f1e0e3
URL:            http://nfsv4.bullopensource.org
c671507
c671507
BuildRoot:      %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
d85eb9a
Source0:        http://downloads.sourceforge.net/rpcbind/%{name}-%{version}.tar.bz2
f39388a
Source1: %{name}.sysconfig
c671507
42c9f95
Requires: glibc-common setup
445e49e
Conflicts: man-pages < 2.43-12
641bcf5
BuildRequires: automake, autoconf, libtool, systemd, systemd-devel
88c5ca5
BuildRequires: libtirpc-devel, quota-devel, tcp_wrappers-devel
eb69b46
Requires(pre): coreutils shadow-utils
2eca485
Requires(post): chkconfig systemd
2eca485
Requires(preun): systemd
2eca485
Requires(postun): systemd coreutils
c671507
d9b5fa4
Patch001: rpcbind-0.2.5-rc1.patch
3c05957
4641820
Patch100: rpcbind-0.2.3-systemd-envfile.patch
f39388a
Patch101: rpcbind-0.2.3-systemd-tmpfiles.patch
f458dbe
Patch102: rpcbind-0.2.4-runstatdir.patch
0df1187
Patch103: rpcbind-0.2.4-systemd-service.patch
d871d5c
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
c671507
3c05957
# 1401561 - rpcbind-0.2.3-12.rc2.fc24 fails to start at boot 
3c05957
%patch001 -p1
3c05957
4641820
%patch100 -p1
f39388a
%patch101 -p1
f458dbe
%patch102 -p1
0df1187
%patch103 -p1
d871d5c
%patch104 -p1
c671507
%build
c671507
%ifarch s390 s390x
c671507
PIE="-fPIE"
c671507
%else
c671507
PIE="-fpie"
c671507
%endif
c671507
export PIE
5af042e
d16c7a4
RPCBUSR=rpc
f39388a
RPCBDIR=/run/rpcbind
c671507
CFLAGS="`echo $RPM_OPT_FLAGS $ARCH_OPT_FLAGS $PIE`"
c671507
c671507
autoreconf -fisv
c671507
%configure CFLAGS="$CFLAGS" LDFLAGS="-pie" \
434ac98
    --enable-warmstarts \
5af042e
    --with-statedir="$RPCBDIR" \
d16c7a4
    --with-rpcuser="$RPCBUSR" \
8e789bd
    --with-nss-modules="files altfiles" \
f4e8f18
    --enable-libwrap \
434ac98
    --enable-debug
c671507
c671507
make all
c671507
c671507
%install
c671507
rm -rf %{buildroot}
feb680b
mkdir -p %{buildroot}{%{_sbindir},%{_bindir},/etc/sysconfig}
eb69b46
mkdir -p %{buildroot}%{_unitdir}
f39388a
mkdir -p %{buildroot}%{_tmpfilesdir}
c671507
mkdir -p %{buildroot}%{_mandir}/man8
7bccfbc
make DESTDIR=$RPM_BUILD_ROOT install
c671507
4641820
install -m644 %{SOURCE1} %{buildroot}/etc/sysconfig/rpcbind
c671507
feb680b
# The binaries now live in /usr/bin, moving from /usr/sbin
feb680b
# For compatibility create a couple symlinks. 
feb680b
cd ${RPM_BUILD_ROOT}%{_sbindir}
feb680b
ln -sf ../bin/rpcbind
feb680b
ln -sf ../bin/rpcinfo
feb680b
f39388a
c671507
%clean
0f1e0e3
rm -rf %{buildroot}
c671507
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
f2ad40f
%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
255f05b
%triggerun -- rpcbind < 0.2.0-15
eb69b46
%{_bindir}/systemd-sysv-convert --save rpcbind >/dev/null 2>&1 ||:
4b3219f
/bin/systemctl --no-reload enable rpcbind.service >/dev/null 2>&1
eb69b46
/sbin/chkconfig --del rpcbind >/dev/null 2>&1 || :
eb69b46
/bin/systemctl try-restart rpcbind.service >/dev/null 2>&1 || :
eb69b46
c0f80c5
%triggerin -- rpcbind > 0.2.2-2.0
518296a
if systemctl -q is-enabled rpcbind.socket
518296a
then
518296a
	/bin/systemctl reenable rpcbind.socket  >/dev/null 2>&1 || :
518296a
	/bin/systemctl restart rpcbind.socket >/dev/null 2>&1 || :
518296a
fi
bc8728c
c671507
%files
c671507
%defattr(-,root,root)
283dad3
%config(noreplace) /etc/sysconfig/rpcbind
c671507
%doc AUTHORS ChangeLog README
feb680b
%{_bindir}/rpcbind
feb680b
%{_bindir}/rpcinfo
feb680b
%{_sbindir}/rpcbind
8a2c049
%{_sbindir}/rpcinfo
c671507
%{_mandir}/man8/*
f39388a
%{_unitdir}/%{name}.service
f39388a
%{_unitdir}/%{name}.socket
f39388a
%{_tmpfilesdir}/%{name}.conf
c671507
c671507
%changelog
34ccc27
* Mon May 15 2017 Steve Dickson <steved@redhat.com> - 0.2.4-6.rc1
dec446a
- Fixed typo in memory leaks patch (bz 1448128)
dec446a
d9b5fa4
* Thu May 11 2017 Steve Dickson <steved@redhat.com> - 0.2.4-5.rc1
d9b5fa4
- Fixed memory leaks (bz 1448128)
d9b5fa4
d871d5c
* Tue Mar 21 2017 Steve Dickson <steved@redhat.com> - 0.2.4-5
d9b5fa4
- Try creating statdir once when opening lock file fails (bz 1401561)
d871d5c
0df1187
* Sat Jan 28 2017 Steve Dickson <steved@redhat.com> - 0.2.4-4
0df1187
- Corrected boot dependency in systemd files (bz 1401561)
0df1187
38c5c9f
* Mon Jan 23 2017 Steve Dickson <steved@redhat.com> - 0.2.4-3
38c5c9f
- Create a systemd dependency for tmpfiles-setup.service (bz 1401561)
38c5c9f
f458dbe
* Mon Jan 16 2017 Steve Dickson <steved@redhat.com> - 0.2.4-2
f458dbe
- Document /run/rpcbind is the state directory (bz 1401561)
f458dbe
3c05957
* Tue Jan  3 2017 Steve Dickson <steved@redhat.com> - 0.2.4-1
3c05957
- Fix boot dependency in systemd service file (bz 1401561)
3c05957
feb680b
* Wed Nov 30 2016 Steve Dickson <steved@redhat.com> - 0.2.4-0
feb680b
- Update to the latest upstream release: 0.2.4
feb680b
f39388a
* Sat Nov 19 2016 Steve Dickson <steved@redhat.com> - 0.2.3-13.rc2
f39388a
- Create the statedir under /run/rpcbind by systemd-tmpfiles.
f39388a
518296a
* Sat Nov 12 2016 Steve Dickson <steved@redhat.com> - 0.2.3-12.rc2
518296a
- Stop enable rpcbind.socket with every update (bz 1393721)
518296a
4641820
* Mon Nov  7 2016 Steve Dickson <steved@redhat.com> - 0.2.3-11.rc2
4641820
- Updated to the latest RC release rpcbind-0_2_4-rc1
4641820
f88fd23
* Mon Aug  1 2016 Steve Dickson <steved@redhat.com> - 0.2.3-11.rc1
f88fd23
- Removing the braces from the ${RPCBIND_ARGS} in rpcbind.service (bz 1362201)
f2ad40f
- Stop enable rpcbind.socket with every update (bz 1324666)
f88fd23
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