From: Harald Hoyer Date: Fri, 21 Oct 2011 07:35:38 +0000 (+0200) Subject: 90livenet/module-setup.sh: silence check for wget X-Git-Tag: 014~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f6eb791b481bd9cab0729010690ee9376742e2c;p=thirdparty%2Fdracut.git 90livenet/module-setup.sh: silence check for wget --- diff --git a/modules.d/90livenet/module-setup.sh b/modules.d/90livenet/module-setup.sh index 3ee7521be..a6ee3e0ae 100755 --- a/modules.d/90livenet/module-setup.sh +++ b/modules.d/90livenet/module-setup.sh @@ -4,7 +4,7 @@ check() { # a live, host-only image doesn't really make a lot of sense [[ $hostonly ]] && return 1 - command -v wget || return 1 + command -v wget >/dev/null || return 1 return 0 }