18c19d34cc
new upstream version
24 lines
670 B
Diff
24 lines
670 B
Diff
From b4692ce3889d5e165a9aa51db7732baf2996fd7a Mon Sep 17 00:00:00 2001
|
|
From: Harald Hoyer <harald@redhat.com>
|
|
Date: Fri, 8 Jun 2012 12:42:12 +0200
|
|
Subject: [PATCH] mdraid/md-shutdown.sh: check for presence of mdadm
|
|
|
|
---
|
|
modules.d/90mdraid/md-shutdown.sh | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/90mdraid/md-shutdown.sh b/modules.d/90mdraid/md-shutdown.sh
|
|
index 1e6c9f6..17eafa5 100755
|
|
--- a/modules.d/90mdraid/md-shutdown.sh
|
|
+++ b/modules.d/90mdraid/md-shutdown.sh
|
|
@@ -18,4 +18,8 @@ _do_md_shutdown() {
|
|
return $ret
|
|
}
|
|
|
|
-_do_md_shutdown $1
|
|
+if command -v mdadm >/dev/null; then
|
|
+ _do_md_shutdown $1
|
|
+else
|
|
+ :
|
|
+fi
|