nfs-utils/nfs.init

175 lines
4.4 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#
# nfs This shell script takes care of starting and stopping
# the NFS services.
#
# chkconfig: - 60 20
# description: NFS is a popular protocol for file sharing across TCP/IP \
# networks. This service provides NFS server functionality, \
# which is configured via the /etc/exports file.
# probe: true
# config: /etc/sysconfig/nfs
# 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 /usr/sbin/rpc.nfsd ] || exit 0
[ -x /usr/sbin/rpc.mountd ] || exit 0
[ -x /usr/sbin/exportfs ] || exit 0
# Don't fail if /etc/exports doesn't exist; create a bare-bones version and continue.
[ -r /etc/exports ] || \
{ touch /etc/exports && chmod u+rw,g+r,o+r /etc/exports ; } || \
{ echo "/etc/exports does not exist" ; exit 0 ; }
# Check for and source configuration file otherwise set defaults
[ -f /etc/sysconfig/nfs ] && . /etc/sysconfig/nfs
[ -z "$MOUNTD_NFS_V2" ] && MOUNTD_NFS_V2=default
[ -z "$MOUNTD_NFS_V3" ] && MOUNTD_NFS_V3=default
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
# Number of servers to be started by default
[ -z "$RPCNFSDCOUNT" ] && RPCNFSDCOUNT=8
# Remote quota server
[ -z "$RQUOTAD" ] && RQUOTAD=`type -path rpc.rquotad`
# See how we were called.
case "$1" in
start)
# Start daemons.
[ -x /usr/sbin/rpc.svcgssd ] && /sbin/service rpcsvcgssd start
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
action $"Starting NFS services: " /usr/sbin/exportfs -r
# Set the ports lockd should listen on
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
if [ -n "$LOCKD_TCPPORT" ]; then
/sbin/sysctl -w fs.nfs.nlm_tcpport=$LOCKD_TCPPORT >/dev/null 2>&1
fi
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
if [ -n "$LOCKD_UDPPORT" ]; then
/sbin/sysctl -w fs.nfs.nlm_udpport=$LOCKD_UDPPORT >/dev/null 2>&1
fi
if [ -n "$RQUOTAD" -a "$RQUOTAD" != "no" ]; then
echo -n $"Starting NFS quotas: "
[ -n "$RQUOTAD_PORT" ] \
&& RPCRQUOTADOPTS="$RPCRQUOTADOPTS -p $RQUOTAD_PORT"
daemon rpc.rquotad $RPCRQUOTADOPTS
echo
fi
echo -n $"Starting NFS daemon: "
daemon rpc.nfsd $RPCNFSDARGS $RPCNFSDCOUNT
echo
[ -n "$MOUNTD_PORT" ] \
&& RPCMOUNTDOPTS="$RPCMOUNTDOPTS -p $MOUNTD_PORT"
case $MOUNTD_NFS_V1 in
no|NO)
RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 1" ;;
esac
case $MOUNTD_NFS_V2 in
no|NO)
RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 2" ;;
esac
case $MOUNTD_NFS_V3 in
no|NO)
RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" ;;
esac
echo -n $"Starting NFS mountd: "
daemon rpc.mountd $RPCMOUNTDOPTS
echo
touch /var/lock/subsys/nfs
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
# Let rpc.idmapd know that rpc.mountd just started
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
[ -x /usr/sbin/rpc.idmapd ] && /sbin/service rpcidmapd condstart
;;
stop)
# Stop daemons.
[ -x /usr/sbin/rpc.svcgssd ] && /sbin/service rpcsvcgssd stop
echo -n $"Shutting down NFS mountd: "
killproc rpc.mountd
echo
echo -n $"Shutting down NFS daemon: "
killproc nfsd -2
echo
if [ -n "$RQUOTAD" -a "$RQUOTAD" != "no" ]; then
echo -n $"Shutting down NFS quotas: "
killproc rpc.rquotad
echo
fi
# Reset the lockd ports if they were set
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
if [ -n "$LOCKD_TCPPORT" ]; then
/sbin/sysctl -w fs.nfs.nlm_tcpport=0 >/dev/null 2>&1
fi
auto-import changelog data from nfs-utils-1.0.6-19.fc2.src.rpm Mon Mar 22 2004 <SteveD@RedHat.com> - Make sure check_new_cache() is looking in the right place Wed Mar 17 2004 <SteveD@RedHat.com> - Changed the v4 initscripts to use $prog for the arugment to daemon Tue Mar 16 2004 <SteveD@RedHat.com> - Made the nfs4 daemons initscripts work better when sunrpc is not a module - added more checks to see if modules are being used. Mon Mar 15 2004 <SteveD@RedHat.com> - Add patch that sets up gssapi_mech.conf correctly Fri Mar 12 2004 <SteveD@RedHat.com> - Added the shutting down of the rpc v4 daemons. - Updated the Red Hat only patch with some init script changes. Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> - rpc_pipefs mounting and aliases are now in modutils; require that Thu Mar 11 2004 <SteveD@RedHat.com> - Updated the gssd patch. Sun Mar 07 2004 <SteveD@RedHat.com> - Added the addition and deletion of rpc_pipefs to /etc/fstab - Added the addition and deletion of module aliases to /etc/modules.conf Mon Mar 01 2004 <SteveD@RedHat.com> - Removed gssd tarball and old nfsv4 patch. - Added new nfsv4 patches that include both the gssd and idmapd daemons - Added redhat-only v4 patch that reduces the static librpc.a to only contain gss rpc related routines (I would rather have gssd use the glibc rpc routines) -Changed the gssd svcgssd init scripts to only start up if SECURE_NFS is set to 'yes' in /etc/sysconfig/nfs Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt Thu Feb 12 2004 Thomas Woerner <twoerner@redhat.com> - make rpc.lockd, rpc.statd, rpc.mountd and rpc.nfsd pie Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> - Added the NFSv4 bits Mon Dec 29 2003 Steve Dickson <SteveD@RedHat.com> - Added the -z flag to nfsstat Wed Dec 24 2003 Steve Dickson <SteveD@RedHat.com> - Fixed lockd port setting in nfs.int script
2004-09-09 09:23:36 +00:00
if [ -n "$LOCKD_UDPPORT" ]; then
/sbin/sysctl -w fs.nfs.nlm_udpport=0 >/dev/null 2>&1
fi
# Do it the last so that clients can still access the server
# when the server is running.
action $"Shutting down NFS services: " /usr/sbin/exportfs -au
rm -f /var/lock/subsys/nfs
;;
status)
[ -x /usr/sbin/rpc.svcgssd ] && /sbin/service rpcsvcgssd status
status rpc.mountd
status nfsd
if [ -n "$RQUOTAD" -a "$RQUOTAD" != "no" ]; then
status rpc.rquotad
fi
;;
restart)
$0 stop
$0 start
;;
reload)
/usr/sbin/exportfs -r
touch /var/lock/subsys/nfs
;;
probe)
if [ ! -f /var/lock/subsys/nfs ] ; then
echo $"start"; exit 0
fi
/sbin/pidof rpc.mountd >/dev/null 2>&1; MOUNTD="$?"
/sbin/pidof nfsd >/dev/null 2>&1; NFSD="$?"
if [ $MOUNTD = 1 -o $NFSD = 1 ] ; then
echo $"restart"; exit 0
fi
if [ /etc/exports -nt /var/lock/subsys/nfs ] ; then
echo $"reload"; exit 0
fi
;;
condrestart)
[ -x /usr/sbin/rpc.svcgssd ] && /sbin/service rpcsvcgssd condrestart
[ -f /var/lock/subsys/nfs ] && {
$0 stop
$0 start
}
;;
condstop)
[ -x /usr/sbin/rpc.svcgssd ] && /sbin/service rpcsvcgssd condstop
[ -f /var/lock/subsys/nfs ] && {
$0 stop
}
;;
*)
echo $"Usage: nfs {start|stop|status|restart|reload|condrestart|condstop}"
exit 1
esac
exit $?