From: Harald Hoyer Date: Mon, 6 May 2013 12:06:29 +0000 (+0200) Subject: dracut.sh: degrade message about missing tools for stripping X-Git-Tag: 028~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fefd3f66f9802f3309c44f45e4959e5fa6683a07;p=thirdparty%2Fdracut.git dracut.sh: degrade message about missing tools for stripping warning -> info https://bugzilla.redhat.com/show_bug.cgi?id=958519 --- diff --git a/dracut.sh b/dracut.sh index 5f0a1b372..88b0645d3 100755 --- a/dracut.sh +++ b/dracut.sh @@ -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