From fefd3f66f9802f3309c44f45e4959e5fa6683a07 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 6 May 2013 14:06:29 +0200 Subject: [PATCH] dracut.sh: degrade message about missing tools for stripping warning -> info https://bugzilla.redhat.com/show_bug.cgi?id=958519 --- dracut.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut.sh b/dracut.sh index 5f0a1b3..88b0645 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