post-functions.sh: Tweak handling of new kernel prompts

This commit is contained in:
Robby Workman 2018-04-04 02:11:10 -05:00
parent 3340c90614
commit b77f5bd5ee
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,6 @@
---------------
- tweak handling of new kernel prompts
- mandoc lint fixes
Wed Apr 4 01:06:05 UTC 2018

View file

@ -228,16 +228,15 @@ updates to your bootloader.
elif [ -x /sbin/lilo ] && [ -r /etc/lilo.conf ] ; then
echo -e "\n
Your kernel image was updated. Be sure to handle any needed updates
to your bootloader.
to your bootloader (possibly as simple as running /sbin/lilo).
"
else
echo -e "\n
Your kernel image was updated, and lilo does not appear to be used on
your system. You may need to adjust your boot manager (like GRUB) to
boot the appropriate kernel."
boot the appropriate kernel (after generating an initrd if required)."
fi
echo -e "\n\n
Press any key to continue...\n
"
echo -e "Press any key to continue...\n "
read _junk
fi
}