c905793db0
Wed Aug 02 2000 Bill Nottingham <notting@redhat.com> - fix stop priority of nfslock Tue Aug 01 2000 Bill Nottingham <notting@redhat.com> - um, actually *include and apply* the statd-drop-privs patch Mon Jul 24 2000 Bill Nottingham <notting@redhat.com> - fix init script ordering (#14502) Sat Jul 22 2000 Bill Nottingham <notting@redhat.com> - run statd chrooted and as non-root - add prereqs Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com> - use "License", not "Copyright" - use %{_tmppath} and %{_mandir} Mon Jul 17 2000 Matt Wilson <msw@redhat.com> - built for next release Mon Jul 17 2000 Matt Wilson <msw@redhat.com> - 0.1.9.1 - remove patch0, has been integrated upstream Wed Feb 09 2000 Bill Nottingham <notting@redhat.com> - the wonderful thing about triggers, is triggers are wonderful things... Thu Feb 03 2000 Cristian Gafton <gafton@redhat.com> - switch to nfs-utils as the base tree - fix the statfs patch for the new code base - single package that obsoletes everything we had before (if I am to keep some traces of my sanity with me...) Mon Jan 17 2000 Preston Brown <pbrown@redhat.com> - use statfs syscall instead of stat to determinal optimal blksize
83 lines
1.7 KiB
Bash
Executable File
83 lines
1.7 KiB
Bash
Executable File
#!/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
|
|
|
|
. /etc/sysconfig/network
|
|
|
|
# Check that networking is up.
|
|
[ ${NETWORKING} = "no" ] && exit 0
|
|
|
|
[ -x /sbin/rpc.lockd ] || exit 0
|
|
[ -x /sbin/rpc.statd ] || exit 0
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
# Start daemons.
|
|
echo "Starting NFS file locking services: "
|
|
echo -n "Starting NFS lockd: "
|
|
daemon rpc.lockd
|
|
echo
|
|
echo -n "Starting NFS statd: "
|
|
daemon rpc.statd
|
|
echo
|
|
touch /var/lock/subsys/nfslock
|
|
;;
|
|
stop)
|
|
# Stop daemons.
|
|
echo "Shutting down NFS file locking services: "
|
|
echo -n "Shutting down NFS lockd: "
|
|
killproc lockd
|
|
echo
|
|
echo -n "Shutting down NFS statd: "
|
|
killproc rpc.statd
|
|
echo
|
|
rm -f /var/lock/subsys/nfslock
|
|
;;
|
|
status)
|
|
status lockd
|
|
status rpc.statd
|
|
;;
|
|
restart)
|
|
echo -n "Restarting NFS file locking services: "
|
|
echo -n "rpc.lockd "
|
|
killproc lockd
|
|
daemon rpc.lockd
|
|
echo -n "rpc.statd "
|
|
killproc rpc.statd
|
|
daemon rpc.statd
|
|
touch /var/lock/subsys/nfslock
|
|
echo "done."
|
|
;;
|
|
probe)
|
|
if [ ! -f /var/lock/subsys/nfslock ] ; then
|
|
echo start; exit 0
|
|
fi
|
|
/sbin/pidof rpc.statd >/dev/null 2>&1; STATD="$?"
|
|
/sbin/pidof lockd >/dev/null 2>&1; LOCKD="$?"
|
|
if [ $STATD = 1 -o $LOCKD = 1 ] ; then
|
|
echo restart; exit 0
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Usage: nfs {start|stop|status|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit 0
|