90mdraid/md-shutdown.sh: put shutdown in function
authorHarald Hoyer <harald@redhat.com>
Wed, 20 Jul 2011 17:06:26 +0000 (19:06 +0200)
committerHarald Hoyer <harald@redhat.com>
Wed, 20 Jul 2011 17:06:26 +0000 (19:06 +0200)
modules.d/90mdraid/md-shutdown.sh

index f07f621..aa89bf6 100644 (file)
@@ -1,2 +1,14 @@
-echo "Disassembling mdraid devices."
-mdadm -v --stop --scan
+#!/bin/sh
+# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
+# ex: ts=8 sw=4 sts=4 et filetype=sh
+_do_md_shutdown() {
+    local ret
+    info "Disassembling mdraid devices."
+    mdadm -v --stop --scan 
+    ret=$?
+#info "cat /proc/mdstat"
+#    cat /proc/mdstat | vinfo
+    return $ret
+}
+
+_do_md_shutdown