From: Harald Hoyer Date: Tue, 28 May 2013 12:25:49 +0000 (+0200) Subject: dracut-functions.sh: clarify instmods() error message X-Git-Tag: 028~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19b5c10963e80cc6899ee4131474c1955754f8c6;p=thirdparty%2Fdracut.git dracut-functions.sh: clarify instmods() error message --- diff --git a/dracut-functions.sh b/dracut-functions.sh index 96d3c6e41..4a0e81ac1 100755 --- a/dracut-functions.sh +++ b/dracut-functions.sh @@ -1608,7 +1608,7 @@ instmods() { while read _mod; do inst1mod "${_mod%.ko*}" || { if [[ "$_check" == "yes" ]]; then - [[ "$_silent" == "no" ]] && dfatal "Failed to install $_mod" + [[ "$_silent" == "no" ]] && dfatal "Failed to install module $_mod" return 1 fi } @@ -1617,7 +1617,7 @@ instmods() { while (($# > 0)); do # filenames as arguments inst1mod ${1%.ko*} || { if [[ "$_check" == "yes" ]]; then - [[ "$_silent" == "no" ]] && dfatal "Failed to install $1" + [[ "$_silent" == "no" ]] && dfatal "Failed to install module $1" return 1 fi }