summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2013-05-28 14:25:49 +0200
committerHarald Hoyer <harald@redhat.com>2013-05-28 14:25:49 +0200
commit19b5c10963e80cc6899ee4131474c1955754f8c6 (patch)
treec2cb92302b8205719575a6818c65f589a025becf
parentbcfbddefe13d179d553da77cf66ada5e6fd804c8 (diff)
downloaddracut-19b5c10963e80cc6899ee4131474c1955754f8c6.tar.gz
dracut-19b5c10963e80cc6899ee4131474c1955754f8c6.tar.bz2
dracut-19b5c10963e80cc6899ee4131474c1955754f8c6.zip
dracut-functions.sh: clarify instmods() error message
-rwxr-xr-xdracut-functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dracut-functions.sh b/dracut-functions.sh
index 96d3c6e4..4a0e81ac 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
}