outfile processing can fit all on one line, so make it. --- dracut | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dracut b/dracut index ae53caf..84abdb5 100755 --- a/dracut +++ b/dracut @@ -24,8 +24,7 @@ while (($# > 0)); do done [[ $2 ]] && kernel=$2 || kernel=$(uname -r) -[[ $1 ]] && outfile=$(readlink -f $1) || \ - outfile="/boot/initrd-$kernel.img" +[[ $1 ]] && outfile=$(readlink -f $1) || outfile="/boot/initrd-$kernel.img" if [[ -f $outfile && ! $force ]]; then echo "Will not override existing initramfs ($outfile) without --force" -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html