linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* modify mdadm-raid script
@ 2005-06-27  0:10 Mitchell Laks
  0 siblings, 0 replies; only message in thread
From: Mitchell Laks @ 2005-06-27  0:10 UTC (permalink / raw)
  To: linux-raid

Along the same lines as above:

Should I simply modify the init script
/etc/init.d/mdadm-raid

script to  add in 
--run to the line which starts the raid??

ie. change the line

               $MDADM -A -s 
to
               $MDADM -A -s --run

so that even if the array is degraded it will start??


Mitchell

Please tell me if I am really doing something really dangerous and dumb
...

Thanks!
Mitchell Laks
 

#!/bin/sh
#
# Start any arrays which are described in /etc/mdadm/mdadm.conf and which are
# not running already.
#
# Copyright (c) 2001-2004 Mario Jou/3en <joussen@debian.org>
# Distributable under the terms of the GNU GPL version 2.

MDADM=/sbin/mdadm
MDRUN=/sbin/mdrun
CONFIG=/etc/mdadm/mdadm.conf
DEBIANCONFIG=/etc/default/mdadm

test -x $MDADM || exit 0

AUTOSTART=true
test -f $DEBIANCONFIG && . $DEBIANCONFIG

case "$1" in
    start)
        if [ "x$AUTOSTART" = "xtrue" ] ; then
            if [ ! -f /proc/mdstat ] && [ -x /sbin/modprobe ] ; then
                /sbin/modprobe -k md > /dev/null 2>&1
            fi
            test -f /proc/mdstat || exit 0
            echo "Starting raid devices: "
            if [ -f $CONFIG ] && [ -x $MDADM ] ; then
                $MDADM -A -s
            elif [ -x $MDRUN ] ; then
                $MDRUN
            fi
            echo "done."
        fi
        ;;
    stop|restart|reload|force-reload)
        ;;
    *)
        echo "Usage: $0 {start|stop|restart|reload|force-reload}"
        exit 1
        ;;
esac

exit 0

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-06-27  0:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-27  0:10 modify mdadm-raid script Mitchell Laks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).