From: Harald Hoyer Date: Wed, 20 May 2009 12:00:28 +0000 (+0200) Subject: silence the "check"'s X-Git-Tag: 0.1~233 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d090d642791c220f4bc64efe7c38ecc2775c5df;p=thirdparty%2Fdracut.git silence the "check"'s --- diff --git a/modules.d/90crypt/check b/modules.d/90crypt/check index 505142e8d..7ab1acb3e 100755 --- a/modules.d/90crypt/check +++ b/modules.d/90crypt/check @@ -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 diff --git a/modules.d/90lvm/check b/modules.d/90lvm/check index a8b1e5d0d..dc433d945 100755 --- a/modules.d/90lvm/check +++ b/modules.d/90lvm/check @@ -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 diff --git a/modules.d/90mdraid/check b/modules.d/90mdraid/check index 414cc2bbf..d809fb42b 100755 --- a/modules.d/90mdraid/check +++ b/modules.d/90mdraid/check @@ -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