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:
parent
70faca5a62
commit
8fe6bc061b
@ -15,7 +15,7 @@
|
|||||||
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
|
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
|
||||||
Name: nfs-utils
|
Name: nfs-utils
|
||||||
Version: 1.0.6
|
Version: 1.0.6
|
||||||
%define release 24
|
%define release 27
|
||||||
|
|
||||||
%define Release %{release}
|
%define Release %{release}
|
||||||
%if %{rhel3build}
|
%if %{rhel3build}
|
||||||
@ -174,13 +174,22 @@ if [ "$?" -eq 1 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/chkconfig --add nfs
|
if [ "$1" -ge 1 ]; then
|
||||||
/sbin/chkconfig --add nfslock
|
|
||||||
%if %{nfsv4_support}
|
%if %{nfsv4_support}
|
||||||
/sbin/chkconfig --add rpcidmapd
|
/etc/rc.d/init.d/rpcidmapd condrestart > /dev/null
|
||||||
/sbin/chkconfig --add rpcgssd
|
/etc/rc.d/init.d/rpcgssd condrestart > /dev/null
|
||||||
/sbin/chkconfig --add rpcsvcgssd
|
/etc/rc.d/init.d/rpcsvcgssd condrestart > /dev/null
|
||||||
%endif
|
%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
|
%preun
|
||||||
if [ "$1" = "0" ]; then
|
if [ "$1" = "0" ]; then
|
||||||
@ -201,6 +210,7 @@ if [ "$1" = "0" ]; then
|
|||||||
%endif
|
%endif
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%triggerpostun -- nfs-server
|
%triggerpostun -- nfs-server
|
||||||
/sbin/chkconfig --add nfs
|
/sbin/chkconfig --add nfs
|
||||||
|
|
||||||
@ -246,7 +256,12 @@ fi
|
|||||||
%config /etc/rc.d/init.d/nfslock
|
%config /etc/rc.d/init.d/nfslock
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
* Mon Jun 14 2004 <SteveD@RedHat.com>
|
* Mon Jun 14 2004 <SteveD@RedHat.com>
|
||||||
|
- Fixed syntax error in nfs initscripts when
|
||||||
|
NETWORKING is not defined
|
||||||
- Removed sync warning on readonly exports.
|
- Removed sync warning on readonly exports.
|
||||||
%if %{fcbuild}
|
%if %{fcbuild}
|
||||||
- Changed run levels in rpc initscripts.
|
- Changed run levels in rpc initscripts.
|
||||||
|
2
nfs.init
2
nfs.init
@ -21,7 +21,7 @@ fi
|
|||||||
. /etc/sysconfig/network
|
. /etc/sysconfig/network
|
||||||
|
|
||||||
# Check that networking is up.
|
# Check that networking is up.
|
||||||
[ ${NETWORKING} = "no" ] && exit 0
|
[ "${NETWORKING}" = "no" ] && exit 0
|
||||||
|
|
||||||
[ -x /usr/sbin/rpc.nfsd ] || exit 0
|
[ -x /usr/sbin/rpc.nfsd ] || exit 0
|
||||||
[ -x /usr/sbin/rpc.mountd ] || exit 0
|
[ -x /usr/sbin/rpc.mountd ] || exit 0
|
||||||
|
@ -23,7 +23,7 @@ fi
|
|||||||
. /etc/sysconfig/network
|
. /etc/sysconfig/network
|
||||||
|
|
||||||
# Check that networking is up.
|
# Check that networking is up.
|
||||||
[ ${NETWORKING} = "no" ] && exit 0
|
[ "${NETWORKING}" = "no" ] && exit 0
|
||||||
|
|
||||||
# Start lockd from userland only if kernel <= 2.2.18
|
# Start lockd from userland only if kernel <= 2.2.18
|
||||||
OS_RELEASE=`uname --release`
|
OS_RELEASE=`uname --release`
|
||||||
|
Loading…
Reference in New Issue
Block a user