]> git.pld-linux.org Git - packages/clusternfs.git/commitdiff
- cleanups; partial synchro with nfs.init
authorzbyniu <zbyniu@pld-linux.org>
Wed, 22 Dec 2004 15:47:06 +0000 (15:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    clusternfs.init -> 1.9

clusternfs.init

index a32d056e280d37a19827a5fe192e472f47936c39..6ab83ccf3dad8fcf5585d5842b04d724dbaca07e 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # init file for ClusterNFS
 #
 #
 # init file for ClusterNFS
 #
 # Get network config
 . /etc/sysconfig/network
 
 # Get network config
 . /etc/sysconfig/network
 
+# defaults
+OPTIONS_NFSD="-T"
+OPTIONS_MNTD="-T"
+
+# Get service config
+[ -f /etc/sysconfig/clusternfs ] && . /etc/sysconfig/clusternfs
+
 # Check that networking is up.
 if is_yes "${NETWORKING}"; then
        if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
 # Check that networking is up.
 if is_yes "${NETWORKING}"; then
        if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
@@ -23,10 +30,14 @@ else
        exit 0
 fi
 
        exit 0
 fi
 
-OPTIONS_NFSD="-T"
-OPTIONS_MNTD="-T"
-prog_nfsd="rpc.nfsd"
-prog_mntd="rpc.mountd"
+if [ -x /sbin/pidof ] && [ "$1" != "stop" ]; then
+       [ -z "`/sbin/pidof portmap`" ] && nls "Error: portmap isn't running" && exit 0
+fi
+
+# Sanity checks
+[ -x /usr/sbin/rpc.nfsd ] || exit 0
+[ -x /usr/sbin/rpc.mountd ] || exit 0
+[ -f /etc/exports ] || exit 0
 
 RETVAL=0
 #See how we were called.
 
 RETVAL=0
 #See how we were called.
@@ -34,11 +45,11 @@ case "$1" in
   start)
        # Check if the service is already running?
        if [ ! -f /var/lock/subsys/clusternfs ]; then
   start)
        # Check if the service is already running?
        if [ ! -f /var/lock/subsys/clusternfs ]; then
-               msg_starting "ClusterNFS ($prog_mntd)"
+               msg_starting "ClusterNFS mountd"
                daemon /usr/sbin/rpc.mountd $OPTIONS_MNTD
                RETVAL=$?
                if [ $RETVAL -eq 0 ]; then
                daemon /usr/sbin/rpc.mountd $OPTIONS_MNTD
                RETVAL=$?
                if [ $RETVAL -eq 0 ]; then
-                       msg_starting "ClusterNFS ($prog_nfsd)"
+                       msg_starting "ClusterNFS daemon"
                        daemon /usr/sbin/rpc.nfsd $OPTIONS_NFSD
                        RETVAL=$?
                fi
                        daemon /usr/sbin/rpc.nfsd $OPTIONS_NFSD
                        RETVAL=$?
                fi
@@ -49,10 +60,10 @@ case "$1" in
        ;;
   stop)
        # Stop daemons.
        ;;
   stop)
        # Stop daemons.
-       if [ -f /var/lock/subsys/clusternfs ]; then
-               msg_stopping "ClusterNFS ($prog_nfsd)"
+       if [ -f /var/lock/subsys/clusternfs ]; then
+               msg_stopping "ClusterNFS daemon"
                killproc /usr/sbin/rpc.nfsd
                killproc /usr/sbin/rpc.nfsd
-               msg_stopping "ClusterNFS ($prog_mntd)"
+               msg_stopping "ClusterNFS mountd"
                killproc /usr/sbin/rpc.mountd
                rm -f /var/lock/subsys/clusternfs
        else
                killproc /usr/sbin/rpc.mountd
                rm -f /var/lock/subsys/clusternfs
        else
@@ -60,6 +71,11 @@ case "$1" in
        fi
        ;;
   status)
        fi
        ;;
   status)
+       status rpc.mountd
+       RETVAL=$?
+       status rpc.nfsd
+       RET=$?
+       [ $RETVAL -eq 0 ] && RETVAL=$RET
        ;;
   restart|force-reload)
        $0 stop
        ;;
   restart|force-reload)
        $0 stop
This page took 0.065614 seconds and 4 git commands to generate.