chore: Make please wait message slightly friendlier.

This commit is contained in:
Kyle Gospodnetich 2023-10-16 15:51:46 -07:00
parent 5af6e8672b
commit e1f5353af2

View File

@ -131,13 +131,13 @@ fi
if [[ $INITRAMFS =~ "disabled" ]]; then
echo "Found needed initramfs changes, applying."
plymouth display-message --text="Updating initramfs - Please wait" || true
plymouth display-message --text="Updating initramfs - Please wait, this may take a while" || true
rpm-ostree initramfs --enable --arg=-I --arg=/etc/crypttab
fi
if [[ -n "$NEEDED_KARGS" ]]; then
echo "Found needed karg changes, applying the following: $NEEDED_KARGS"
plymouth display-message --text="Updating kargs - Please wait" || true
plymouth display-message --text="Updating kargs - Please wait, this may take a while" || true
rpm-ostree kargs ${NEEDED_KARGS} --reboot || exit 1
else
echo "No karg changes needed"