dracut.sh: degrade message about missing tools for stripping
authorHarald Hoyer <harald@redhat.com>
Mon, 6 May 2013 12:06:29 +0000 (14:06 +0200)
committerHarald Hoyer <harald@redhat.com>
Mon, 6 May 2013 12:20:16 +0000 (14:20 +0200)
warning -> info

https://bugzilla.redhat.com/show_bug.cgi?id=958519

dracut.sh

index 5f0a1b3..88b0645 100755 (executable)
--- 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