auto-import changelog data from nfs-utils-1.0.6-27.src.rpm

Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
This commit is contained in:
cvsdist 2004-09-09 09:25:46 +00:00
parent 70faca5a62
commit 8fe6bc061b
3 changed files with 23 additions and 8 deletions

View File

@ -15,7 +15,7 @@
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
Name: nfs-utils
Version: 1.0.6
%define release 24
%define release 27
%define Release %{release}
%if %{rhel3build}
@ -174,13 +174,22 @@ if [ "$?" -eq 1 ]; then
fi
%post
/sbin/chkconfig --add nfs
/sbin/chkconfig --add nfslock
if [ "$1" -ge 1 ]; then
%if %{nfsv4_support}
/sbin/chkconfig --add rpcidmapd
/sbin/chkconfig --add rpcgssd
/sbin/chkconfig --add rpcsvcgssd
/etc/rc.d/init.d/rpcidmapd condrestart > /dev/null
/etc/rc.d/init.d/rpcgssd condrestart > /dev/null
/etc/rc.d/init.d/rpcsvcgssd condrestart > /dev/null
%endif
/etc/rc.d/init.d/nfs condrestart > /dev/null
else
/sbin/chkconfig --add nfs
/sbin/chkconfig --add nfslock
%if %{nfsv4_support}
/sbin/chkconfig --add rpcidmapd
/sbin/chkconfig --add rpcgssd
/sbin/chkconfig --add rpcsvcgssd
%endif
fi
%preun
if [ "$1" = "0" ]; then
@ -201,6 +210,7 @@ if [ "$1" = "0" ]; then
%endif
fi
%triggerpostun -- nfs-server
/sbin/chkconfig --add nfs
@ -246,7 +256,12 @@ fi
%config /etc/rc.d/init.d/nfslock
%changelog
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Mon Jun 14 2004 <SteveD@RedHat.com>
- Fixed syntax error in nfs initscripts when
NETWORKING is not defined
- Removed sync warning on readonly exports.
%if %{fcbuild}
- Changed run levels in rpc initscripts.

View File

@ -21,7 +21,7 @@ fi
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
[ "${NETWORKING}" = "no" ] && exit 0
[ -x /usr/sbin/rpc.nfsd ] || exit 0
[ -x /usr/sbin/rpc.mountd ] || exit 0

View File

@ -23,7 +23,7 @@ fi
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
[ "${NETWORKING}" = "no" ] && exit 0
# Start lockd from userland only if kernel <= 2.2.18
OS_RELEASE=`uname --release`