This commit is contained in:
parent
25e9fefe38
commit
5d1d69c8ad
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 5 14:44:56 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
|
- fix version comparison in Obsoletes [bnc#440313]
|
||||||
|
- disable portmap service in pre script to avoid problems when
|
||||||
|
upgrading from portmap
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 15 19:07:48 CEST 2008 - mkoenig@suse.de
|
Wed Oct 15 19:07:48 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
|
15
rpcbind.spec
15
rpcbind.spec
@ -24,17 +24,16 @@ License: BSD 3-Clause
|
|||||||
Group: Productivity/Networking/System
|
Group: Productivity/Networking/System
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 0.1.6+git20080930
|
Version: 0.1.6+git20080930
|
||||||
Release: 1
|
Release: 2
|
||||||
Summary: Transport independent RPC portmapper
|
Summary: Transport independent RPC portmapper
|
||||||
Url: http://nfsv4.bullopensource.org/doc/tirpc_rpcbind.php
|
Url: http://nfsv4.bullopensource.org/doc/tirpc_rpcbind.php
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Source1: rpcbind.init
|
Source1: rpcbind.init
|
||||||
Source2: sysconfig.rpcbind
|
Source2: sysconfig.rpcbind
|
||||||
Source3: rpcbind.xml
|
Source3: rpcbind.xml
|
||||||
#Patch6: rpcbind-0.1.4-localaddr.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Provides: portmap = 6.0+git20070716
|
Provides: portmap = 6.0+git20070716
|
||||||
Obsoletes: portmap < 6.0+git20070716
|
Obsoletes: portmap <= 6.0+git20070716
|
||||||
PreReq: %insserv_prereq %fillup_prereq
|
PreReq: %insserv_prereq %fillup_prereq
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -85,6 +84,12 @@ install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%_datadir/omc/svcinfo.d/
|
|||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%pre
|
||||||
|
# upgrade case from portmap
|
||||||
|
if test -x /sbin/portmap && chkconfig -c portmap; then
|
||||||
|
chkconfig -f -s portmap off
|
||||||
|
fi
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
%stop_on_removal rpcbind
|
%stop_on_removal rpcbind
|
||||||
|
|
||||||
@ -108,6 +113,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/omc/svcinfo.d/rpcbind.xml
|
%{_datadir}/omc/svcinfo.d/rpcbind.xml
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 05 2008 mkoenig@suse.de
|
||||||
|
- fix version comparison in Obsoletes [bnc#440313]
|
||||||
|
- disable portmap service in pre script to avoid problems when
|
||||||
|
upgrading from portmap
|
||||||
* Wed Oct 15 2008 mkoenig@suse.de
|
* Wed Oct 15 2008 mkoenig@suse.de
|
||||||
- update to 0.1.6 with additional patches from git
|
- update to 0.1.6 with additional patches from git
|
||||||
* Fixed an ipv6 related segfault on startup
|
* Fixed an ipv6 related segfault on startup
|
||||||
|
Loading…
Reference in New Issue
Block a user