ACC SHELL
Path : /etc/rc.d/ |
|
Current File : //etc/rc.d/multipathd |
#! /bin/sh
# Copyright (c) 1995-2001 SuSE GmbH Nuernberg, Germany.
#
# Author: Hannes Reinecke <feedback@suse.de>
#
# init.d/routed
#
# and symbolic its link
#
# /usr/sbin/rcrouted
#
### BEGIN INIT INFO
# Provides: multipathd
# Required-Start: $syslog
# Required-Stop: $syslog
# Default-Start: 3 5
# Default-Stop: 0 1 2 4 6
# Short-Description: Starts multipath daemon
# Description: Starts the multipath daemon
### END INIT INFO
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/sbin/multipathd
PIDFILE=/var/run/multipathd.pid
MPATH_INIT_TIMEOUT=10
ARGS=""
# Set the maximum number of open files
MAX_OPEN_FDS=4096
test -x $DAEMON || exit 5
. /etc/rc.status
# First reset status of this service
rc_reset
case "$1" in
start)
echo -n "Starting multipathd"
if $DAEMON -k"reset log" > /dev/null 2>&1 ; then
echo -n " (multipathd running)"
rc_status -v
rc_exit
fi
modprobe dm-multipath
# Set the maximum number of open files
if [ -n "$MAX_OPEN_FDS" ] ; then
ulimit -n $MAX_OPEN_FDS
fi
$DAEMON $ARGS
# Wait for the daemon to start up
timeout=$MPATH_INIT_TIMEOUT
while [ ! -f $PIDFILE ] ; do
sleep 1
timeout=$(( $timeout - 1 ))
[ $timeout -eq 0 ] && break
done
if [ $timeout -eq 0 ] ; then
echo -n " (no pidfile)"
rc_failed 1
fi
# Remember status and be verbose
rc_status -v
;;
stop)
echo -n "Shutting down multipathd"
# Because of the way how multipathd sets up its own namespace
# and chroots to it, killproc cannot be used with this process.
# So implement a cruder version:
if [ -f $PIDFILE ]; then
PID="$(cat $PIDFILE)"
PROCNAME="$(ps -p $PID -o comm=)"
fi
status=$($DAEMON -k'shutdown' 2> /dev/null)
if [ "$status" != "ok" ] ; then
if [ "$PROCNAME" == `basename $DAEMON` ]; then
kill -TERM $PID
else
rc_failed 7
rc_status -v
rc_exit
fi
fi
timeout=$MPATH_INIT_TIMEOUT
while [ -f $PIDFILE ] ; do
sleep 1
timeout=$(( $timeout - 1 ))
[ $timeout -eq 0 ] && break
done
if [ $timeout -eq 0 ] ; then
echo -n " (still running)"
rc_failed 1
fi
# Remember status and be verbose
rc_status -v
;;
try-restart)
## Stop the service and if this succeeds (i.e. the
## service was running before), start it again.
$0 status >/dev/null && $0 restart
# Remember status and be quiet
rc_status
;;
restart|force-reload)
## Stop the service and regardless of whether it was
## running or not, start it again.
$0 stop
$0 start
# Remember status and be quiet
rc_status
;;
reload)
## Like force-reload, but if daemon does not support
## signalling, do nothing (!)
# If it does not support reload:
exit 3
;;
status)
echo -n "Checking for multipathd: "
# Status has a slightly different for the status command:
# 0 - service running
# 1 - service dead, but /var/run/ pid file exists
# 2 - service dead, but /var/lock/ lock file exists
# 3 - service not running
if [ -f $PIDFILE ]; then
PID="$(cat $PIDFILE)"
PROCNAME="$(ps -p $PID -o comm=)"
if [ "$PROCNAME" == `basename $DAEMON` ]; then
(exit 0)
else
(exit 1)
fi
else
(exit 3)
fi
rc_status -v
;;
probe)
## Optional: Probe for the necessity of a reload,
## give out the argument which is required for a reload.
;;
*)
echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
exit 1
;;
esac
rc_exit
ACC SHELL 2018