nfs-utils/nfslock.init

148 lines
3.2 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#
# nfslock This shell script takes care of starting and stopping
# the NFS file locking service.
#
# chkconfig: 345 14 86
# description: NFS is a popular protocol for file sharing across \
# TCP/IP networks. This service provides NFS file \
# locking functionality.
# probe: true
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
if [ ! -f /etc/sysconfig/network ]; then
exit 0
fi
# Check for and source configuration file
[ -f /etc/sysconfig/nfs ] && . /etc/sysconfig/nfs
. /etc/sysconfig/network
# Check that networking is up.
[ "${NETWORKING}" = "no" ] && exit 0
# Start lockd from userland only if kernel <= 2.2.18
OS_RELEASE=`uname --release`
OS_RELEASE_MAJOR=`echo "$OS_RELEASE" | sed 's/\(^[0-9]\)\..*/\1/'`
OS_RELEASE_MINOR=`echo "$OS_RELEASE" | sed 's/\(^[0-9]\)\.\([0-9]*\)\..*/\2/'`
OS_RELEASE_VERSION=`echo "$OS_RELEASE" | sed 's/\(^[0-9]\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'`
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
if [ "$OS_RELEASE_MAJOR" -le 2 -a "$OS_RELEASE_MINOR" -le 2 -a "$OS_RELEASE_VERSION" -le 18 ] ; then
USERLAND_LOCKD="yes"
else
USERLAND_LOCKD=
fi
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
if [ "$USERLAND_LOCKD" ] ; then
[ -x /sbin/rpc.lockd ] || exit 0
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
fi
[ -x /sbin/rpc.statd ] || exit 0
RETVAL=0
if [ -n "${STATD_HOSTNAME}" ]; then
STATDARG="-n ${STATD_HOSTNAME}"
else
STATDARG=""
fi
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
start() {
if [ ! -f /var/lock/subsys/nfslock ]; then
# Start daemons.
if [ "$USERLAND_LOCKD" ]; then
echo -n $"Starting NFS locking: "
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
daemon rpc.lockd
echo
else
# See if the kernel lockd should start up
# listening on a particular port
#
LOCKDARG=""
[ -n "$LOCKD_TCPPORT" ] && LOCKDARG="nlm_tcpport=$LOCKD_TCPPORT"
[ -n "$LOCKD_UDPPORT" ] && \
LOCKDARG="$LOCKDARG nlm_udpport=$LOCKD_UDPPORT"
[ -n "$LOCKDARG" ] && \
modprobe lockd $LOCKDARG
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
fi
echo -n $"Starting NFS statd: "
# See if a statd's ports has been defined
[ -n "$STATD_PORT" ] && STATDARG="$STATDARG -p $STATD_PORT"
[ -n "$STATD_OUTGOING_PORT" ] \
&& STATDARG="$STATDARG -o $STATD_OUTGOING_PORT"
# See if we have an HA-callout program specified
[ -n "$STATD_HA_CALLOUT" ] \
&& STATDARG="$STATDARG -H $STATD_HA_CALLOUT"
daemon rpc.statd "$STATDARG"
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
RETVAL=$?
echo
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/nfslock
fi
return $RETVAL
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
}
stop() {
# Stop daemons.
if [ -n "`pidofproc lockd`" ]; then
echo -n $"Stopping NFS locking: "
killproc lockd -KILL
echo
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
fi
echo -n $"Stopping NFS statd: "
killproc rpc.statd
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
RETVAL=0
echo
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/nfslock
return $RETVAL
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
if [ "$USERLAND_LOCKD" ]; then
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
status lockd
fi
status rpc.statd
;;
restart)
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
stop
start
;;
probe)
if [ ! -f /var/lock/subsys/nfslock ] ; then
echo $"start"; exit 0
fi
/sbin/pidof rpc.statd >/dev/null 2>&1; STATD="$?"
if [ "$USERLAND_LOCKD" ]; then
auto-import changelog data from nfs-utils-0.3.1-5.src.rpm Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> - don't use rquotad from here now; quota package contains a version that works with 2.4 (#33738) Mon Mar 12 2001 Bob Matthews <bmatthews@redhat.com> - Statd logs at LOG_DAEMON rather than LOG_LOCAL5 - s/nfs/\$0/ where appropriate in init scripts Tue Mar 06 2001 Jeff Johnson <jbj@redhat.com> - Move to nfs-utils-0.3.1 Wed Feb 14 2001 Bob Matthews <bmatthews@redhat.com> - #include <time.h> patch Mon Feb 12 2001 Bob Matthews <bmatthews@redhat.com> - Really enable netgroups Mon Feb 05 2001 Bernhard Rosenkraenzer <bero@redhat.com> - i18nize initscripts Fri Jan 19 2001 Bob Matthews <bmatthews@redhat.com> - Increased {s,r}blen in rpcmisc.c:makesock to accommodate eepro100 Tue Jan 16 2001 Bob Matthews <bmatthews@redhat.com> - Hackish fix in build section to enable netgroups Wed Jan 03 2001 Bob Matthews <bmatthews@redhat.com> - Fix incorrect file specifications in statd manpage. - Require gawk 'cause it's used in nfslock init script. Wed Dec 13 2000 Bob Matthews <bmatthews@redhat.com> - Require sed because it's used in nfs init script Tue Dec 12 2000 Bob Matthews <bmatthews@redhat.com> - Don't do a chroot(2) after dropping privs, in statd. Mon Dec 11 2000 Bob Matthews <bmatthews@redhat.com> - NFSv3 if kernel >= 2.2.18, detected in init script Thu Nov 23 2000 Florian La Roche <Florian.LaRoche@redhat.de> - update to 0.2.1 Tue Nov 14 2000 Bill Nottingham <notting@redhat.com> - don't start lockd on 2.4 kernels; it's unnecessary
2004-09-09 09:14:35 +00:00
/sbin/pidof lockd >/dev/null 2>&1; LOCKD="$?"
else
LOCKD=0
fi
if [ $STATD = 1 -o $LOCKD = 1 ] ; then
echo $"restart"; exit 0
fi
;;
condrestart)
[ -f /var/lock/subsys/nfslock ] && {
stop
start
}
;;
*)
echo $"Usage: $0 {start|stop|status|restart|probe|condrestart}"
exit 1
esac
exit 0