]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
silence the "check"'s
authorHarald Hoyer <harald@redhat.com>
Wed, 20 May 2009 12:00:28 +0000 (14:00 +0200)
committerHarald Hoyer <harald@redhat.com>
Wed, 20 May 2009 12:00:28 +0000 (14:00 +0200)
modules.d/90crypt/check
modules.d/90lvm/check
modules.d/90mdraid/check

index 505142e8d48cd94cfd7bdc73630a6595ea94b372..7ab1acb3ee836574722aab8db7d784b66f8c0142 100755 (executable)
@@ -2,7 +2,7 @@
 
 [[ $dracutfunctions ]] && . $dracutfunctions
 
-find_binary cryptsetup || exit 1
+find_binary cryptsetup >/dev/null || exit 1
 
 if [ "$1" = "-h" ]; then
     blkid | grep -q crypt_LUKS || exit 1
index a8b1e5d0d25c7d6e3676db1d7752bb9894e6acb7..dc433d94566142b7fb78e19eac0fc6ec043c68b2 100755 (executable)
@@ -2,7 +2,7 @@
 
 [[ $dracutfunctions ]] && . $dracutfunctions
 
-find_binary lvm || exit 1
+find_binary lvm >/dev/null || exit 1
 
 if [ "$1" = "-h" ]; then
     blkid | grep -q lvm2pv || exit 1
index 414cc2bbf5fd250a230246c6693c2e5556bf0057..d809fb42b5fff59efc2f50f398d972657ba8b061 100755 (executable)
@@ -2,7 +2,7 @@
 
 [[ $dracutfunctions ]] && . $dracutfunctions
 
-find_binary mdadm || exit 1
+find_binary mdadm >/dev/null || exit 1
 
 if [ "$1" = "-h" ]; then
     blkid | grep -q linux_raid || exit 1