diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-07-29 18:43:45 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-07-29 18:43:45 +0000 |
commit | 2ef625d63575782a442407f03931b0896f16b052 (patch) | |
tree | d61b9efc5bf2c664877b2c4f20936d8c08595e53 /net-fs/nfs-utils/files | |
parent | unmasking tree on amd64 (diff) | |
download | historical-2ef625d63575782a442407f03931b0896f16b052.tar.gz historical-2ef625d63575782a442407f03931b0896f16b052.tar.bz2 historical-2ef625d63575782a442407f03931b0896f16b052.zip |
cleanup
Diffstat (limited to 'net-fs/nfs-utils/files')
-rw-r--r-- | net-fs/nfs-utils/files/digest-nfs-utils-0.3.3-r1 | 1 | ||||
-rw-r--r-- | net-fs/nfs-utils/files/digest-nfs-utils-1.0.1-r1 | 1 | ||||
-rw-r--r-- | net-fs/nfs-utils/files/digest-nfs-utils-1.0.5 | 1 | ||||
-rwxr-xr-x | net-fs/nfs-utils/files/nfs | 141 | ||||
-rw-r--r-- | net-fs/nfs-utils/files/nfs-1 | 154 |
5 files changed, 0 insertions, 298 deletions
diff --git a/net-fs/nfs-utils/files/digest-nfs-utils-0.3.3-r1 b/net-fs/nfs-utils/files/digest-nfs-utils-0.3.3-r1 deleted file mode 100644 index c2ca12fabcd9..000000000000 --- a/net-fs/nfs-utils/files/digest-nfs-utils-0.3.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 a33ad83846a7ca49af3b3106badf7af6 nfs-utils-0.3.3.tar.gz 238044 diff --git a/net-fs/nfs-utils/files/digest-nfs-utils-1.0.1-r1 b/net-fs/nfs-utils/files/digest-nfs-utils-1.0.1-r1 deleted file mode 100644 index eee23da601ba..000000000000 --- a/net-fs/nfs-utils/files/digest-nfs-utils-1.0.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 7a9f802911cf2a79942338b1269b3d5b nfs-utils-1.0.1.tar.gz 24450 diff --git a/net-fs/nfs-utils/files/digest-nfs-utils-1.0.5 b/net-fs/nfs-utils/files/digest-nfs-utils-1.0.5 deleted file mode 100644 index 4f630b2a2adb..000000000000 --- a/net-fs/nfs-utils/files/digest-nfs-utils-1.0.5 +++ /dev/null @@ -1 +0,0 @@ -MD5 ce48f1e17f1c49ca14dbd2b0e033d1b9 nfs-utils-1.0.5.tar.gz 265760 diff --git a/net-fs/nfs-utils/files/nfs b/net-fs/nfs-utils/files/nfs deleted file mode 100755 index d9e292df9e05..000000000000 --- a/net-fs/nfs-utils/files/nfs +++ /dev/null @@ -1,141 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs,v 1.6 2003/02/14 23:00:05 vapier Exp $ - -#--------------------------------------------------------------------------- -# This script starts/stops the following -# rpc.statd if necessary (also checked by init.d/nfsmount) -# rpd.rquotad -# rpd.nfsd -# rpc.mountd -#--------------------------------------------------------------------------- - -# NB: Config is in /etc/conf.d/nfs - - -opts="start stop restart reload" - -# This variable is used for controlling whether or not to run exportfs -ua; -# see stop() for more information -RESTARTING=no - -depend() { - need net portmap -} - -start_statd() { - # Don't start rpc.statd if already started by init.d/nfsmount - killall -0 rpc.statd &>/dev/null && return 0 - ebegin "Starting NFS statd" - start-stop-daemon --start --quiet --exec /sbin/rpc.statd \ - --$RPCSTATDOPTS 1>&2 - eend $? "Error starting NFS statd" -} - -stop_statd() { - # Don't stop rpc.statd if it's in use by init.d/nfsmount. - mount -t nfs | grep -q . && return 0 - # Make sure it's actually running - killall -0 rpc.statd &>/dev/null || return 0 - # Okay, all tests passed, stop rpc.statd - ebegin "Stopping NFS statd" - start-stop-daemon --stop --quiet --exec /sbin/rpc.statd 1>&2 - eend $? "Error stopping NFS statd" -} - -start() { - start_statd - - # Exportfs likes to hang if networking isn't working. - # If that's the case, then try to kill it so the - # bootup process can continue. - if grep -q '^/' /etc/exports &>/dev/null; then - ebegin "Exporting NFS directories" - /sbin/exportfs -r 1>&2 & - ( sleep 5; kill -9 $! &>/dev/null & ) - wait - eend $? "Error exporting NFS directories" - fi - - ebegin "Starting NFS rquotad" - start-stop-daemon --start --quiet --exec /sbin/rpc.rquotad \ - --$RPCRQUOTADOPTS 1>&2 - eend $? "Error starting NFS rquotad" - - ebegin "Starting NFS daemon" - start-stop-daemon --start --quiet --exec \ - /sbin/rpc.nfsd -- $RPCNFSDCOUNT 1>&2 - eend $? "Error starting NFS daemon" - - # Check if we support NFSv3 - ebegin "Starting NFS mountd" - rpcinfo -u localhost nfs 3 &>/dev/null || \ - RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" - start-stop-daemon --start --quiet --exec \ - /sbin/rpc.mountd -- $RPCMOUNTDOPTS 1>&2 - eend $? "Error starting NFS mountd" -} - -stop() { - # Don't check NFSSERVER variable since it might have changed, - # instead use --oknodo to smooth things over - ebegin "Stopping NFS mountd" - start-stop-daemon --stop --quiet --oknodo \ - --exec /sbin/rpc.mountd 1>&2 - eend $? "Error stopping NFS mountd" - - ebegin "Stopping NFS daemon" - start-stop-daemon --stop --quiet --oknodo \ - --name nfsd --user root --signal 2 1>&2 - eend $? "Error stopping NFS daemon" - - ebegin "Stopping NFS rquotad" - start-stop-daemon --stop --quiet --oknodo \ - --exec /sbin/rpc.rquotad 1>&2 - eend $? "Error stopping NFS rquotad" - - # When restarting the NFS server, running "exportfs -ua" probably - # isn't what the user wants. Running it causes all entries listed - # in xtab to be removed from the kernel export tables, and the - # xtab file is cleared. This effectively shuts down all NFS - # activity, leaving all clients holding stale NFS filehandles, - # *even* when the NFS server has restarted. - # - # That's what you would want if you were shutting down the NFS - # server for good, or for a long period of time, but not when the - # NFS server will be running again in short order. In this case, - # then "exportfs -r" will reread the xtab, and all the current - # clients will be able to resume NFS activity, *without* needing - # to umount/(re)mount the filesystem. - if [ "$RESTARTING" = no ]; then - ebegin "Unexporting NFS directories" - # Exportfs likes to hang if networking isn't working. - # If that's the case, then try to kill it so the - # bootup process can continue. - /sbin/exportfs -ua 1>&2 & - ( sleep 5; kill -9 $! &>/dev/null & ) - wait - eend $? "Error unexporting NFS directories" - fi - - stop_statd -} - -reload() { - # Exportfs likes to hang if networking isn't working. - # If that's the case, then try to kill it so the - # bootup process can continue. - ebegin "Reloading /etc/exports" - /sbin/exportfs -r 1>&2 & - ( sleep 5; kill -9 $! &>/dev/null & ) - wait - eend $? "Error exporting NFS directories" -} - -restart() { - # See long comment in stop() regarding RESTARTING and exportfs -ua - RESTARTING=yes - svc_stop - svc_start -} diff --git a/net-fs/nfs-utils/files/nfs-1 b/net-fs/nfs-utils/files/nfs-1 deleted file mode 100644 index 35ee3a884447..000000000000 --- a/net-fs/nfs-utils/files/nfs-1 +++ /dev/null @@ -1,154 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs-1,v 1.1 2003/03/04 03:38:00 agriffis Exp $ - -#--------------------------------------------------------------------------- -# This script starts/stops the following -# rpc.statd if necessary (also checked by init.d/nfsmount) -# rpc.rquotad if exists (from quota package) -# rpc.nfsd -# rpc.mountd -#--------------------------------------------------------------------------- - -# NB: Config is in /etc/conf.d/nfs - - -opts="start stop restart reload" - -# This variable is used for controlling whether or not to run exportfs -ua; -# see stop() for more information -restarting=no - -# The binary locations -exportfs=/usr/sbin/exportfs -statd=/sbin/rpc.statd -rquotad=/usr/sbin/rpc.rquotad -nfsd=/usr/sbin/rpc.nfsd -mountd=/usr/sbin/rpc.mountd - -depend() { - need net portmap - after quota -} - -start_statd() { - # Don't start rpc.statd if already started by init.d/nfsmount - killall -0 rpc.statd &>/dev/null && return 0 - ebegin "Starting NFS statd" - start-stop-daemon --start --quiet --exec \ - $statd -- $RPCSTATDOPTS 1>&2 - eend $? "Error starting NFS statd" -} - -stop_statd() { - # Don't stop rpc.statd if it's in use by init.d/nfsmount. - mount -t nfs | grep -q . && return 0 - # Make sure it's actually running - killall -0 rpc.statd &>/dev/null || return 0 - # Okay, all tests passed, stop rpc.statd - ebegin "Stopping NFS statd" - start-stop-daemon --stop --quiet --exec $statd 1>&2 - eend $? "Error stopping NFS statd" -} - -start() { - start_statd - - # Exportfs likes to hang if networking isn't working. - # If that's the case, then try to kill it so the - # bootup process can continue. - if grep -q '^/' /etc/exports &>/dev/null; then - ebegin "Exporting NFS directories" - $exportfs -r 1>&2 & - ( sleep 5; kill -9 $! &>/dev/null & ) - wait - eend $? "Error exporting NFS directories" - fi - - if [ -x $rquotad ]; then - ebegin "Starting NFS rquotad" - start-stop-daemon --start --quiet --exec \ - $rquotad -- $RPCRQUOTADOPTS 1>&2 - eend $? "Error starting NFS rquotad" - fi - - ebegin "Starting NFS daemon" - start-stop-daemon --start --quiet --exec \ - $nfsd -- $RPCNFSDCOUNT 1>&2 - eend $? "Error starting NFS daemon" - - # Check if we support NFSv3 - ebegin "Starting NFS mountd" - rpcinfo -u localhost nfs 3 &>/dev/null || \ - RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" - start-stop-daemon --start --quiet --exec \ - $mountd -- $RPCMOUNTDOPTS 1>&2 - eend $? "Error starting NFS mountd" -} - -stop() { - # Don't check NFSSERVER variable since it might have changed, - # instead use --oknodo to smooth things over - ebegin "Stopping NFS mountd" - start-stop-daemon --stop --quiet --oknodo \ - --exec $mountd 1>&2 - eend $? "Error stopping NFS mountd" - - # nfsd sets its process name to [nfsd] so don't look for $nfsd - ebegin "Stopping NFS daemon" - start-stop-daemon --stop --quiet --oknodo \ - --name nfsd --user root --signal 2 1>&2 - eend $? "Error stopping NFS daemon" - - if [ -x $rquotad ]; then - ebegin "Stopping NFS rquotad" - start-stop-daemon --stop --quiet --oknodo \ - --exec $rquotad 1>&2 - eend $? "Error stopping NFS rquotad" - fi - - # When restarting the NFS server, running "exportfs -ua" probably - # isn't what the user wants. Running it causes all entries listed - # in xtab to be removed from the kernel export tables, and the - # xtab file is cleared. This effectively shuts down all NFS - # activity, leaving all clients holding stale NFS filehandles, - # *even* when the NFS server has restarted. - # - # That's what you would want if you were shutting down the NFS - # server for good, or for a long period of time, but not when the - # NFS server will be running again in short order. In this case, - # then "exportfs -r" will reread the xtab, and all the current - # clients will be able to resume NFS activity, *without* needing - # to umount/(re)mount the filesystem. - if [ "$restarting" = no ]; then - ebegin "Unexporting NFS directories" - # Exportfs likes to hang if networking isn't working. - # If that's the case, then try to kill it so the - # shutdown process can continue. - $exportfs -ua 1>&2 & - ( sleep 5; kill -9 $! &>/dev/null & ) - wait - eend $? "Error unexporting NFS directories" - fi - - stop_statd -} - -reload() { - # Exportfs likes to hang if networking isn't working. - # If that's the case, then try to kill it so the - # bootup process can continue. - ebegin "Reloading /etc/exports" - $exportfs -r 1>&2 & - ( sleep 5; kill -9 $! &>/dev/null & ) - wait - eend $? "Error exporting NFS directories" -} - -restart() { - # See long comment in stop() regarding "restarting" and exportfs -ua - restarting=yes - svc_stop - svc_start -} |