pentoo-updater: quiet down

This commit is contained in:
Rick Farina (Zero_Chaos) 2023-12-25 13:12:43 -05:00
parent f94209d2b7
commit a5f8cae0bd
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC

View file

@ -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