dracut.sh: degrade message about missing tools for stripping

warning -> info

https://bugzilla.redhat.com/show_bug.cgi?id=958519
master
Harald Hoyer 2013-05-06 14:06:29 +02:00
parent d57b8833c4
commit fefd3f66f9
1 changed files with 1 additions and 1 deletions

View File

@ -1162,7 +1162,7 @@ fi
if [[ $do_strip = yes ]] ; then
for p in strip xargs find; do
if ! type -P $p >/dev/null; then
dwarn "Could not find '$p'. Not stripping the initramfs."
dinfo "Could not find '$p'. Not stripping the initramfs."
do_strip=no
fi
done