Browse Source

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

master
Harald Hoyer 14 years ago
parent
commit
8e448cadf9
  1. 16
      modules.d/90mdraid/md-shutdown.sh

16
modules.d/90mdraid/md-shutdown.sh

@ -1,2 +1,14 @@ @@ -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

Loading…
Cancel
Save