From a5f8cae0bdf846deb3592fa2a7a3add60d05333e Mon Sep 17 00:00:00 2001 From: "Rick Farina (Zero_Chaos)" Date: Mon, 25 Dec 2023 13:12:43 -0500 Subject: [PATCH] pentoo-updater: quiet down --- scripts/pentoo-updater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pentoo-updater.sh b/scripts/pentoo-updater.sh index 88e397cee4..167abafad1 100755 --- a/scripts/pentoo-updater.sh +++ b/scripts/pentoo-updater.sh @@ -665,7 +665,7 @@ main_upgrades() { mount_boot() { #so since portage is no longer allowed to mount /boot, we need to do it - if grep '/boot' /etc/fstab && ! mountpoint /boot ; then + if grep -q '/boot' /etc/fstab && ! mountpoint /boot > /dev/null 2>&1 ; then #pretty much going to trust fstab and ignore failures here mount /boot fi