90mdraid/md-shutdown.sh: put shutdown in function

master
Harald Hoyer 2011-07-20 19:06:26 +02:00
parent 4456861f7e
commit 8e448cadf9
1 changed files with 14 additions and 2 deletions

View 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