package-managers: handle Gentoo

This commit is contained in:
Frédéric Pierret (fepitre) 2020-07-26 14:20:57 +02:00
parent 5db43b9534
commit 76142139a0
No known key found for this signature in database
GPG Key ID: 484010B5CDC576E2

View File

@ -35,6 +35,13 @@ elif [ -e /etc/arch-release ]; then
checkupdates_output="$(checkupdates 2>&1)" checkupdates_output="$(checkupdates 2>&1)"
exit_code="$?" exit_code="$?"
echo "$checkupdates_output" | grep -qF -- '->' && echo "false" || echo "true" echo "$checkupdates_output" | grep -qF -- '->' && echo "false" || echo "true"
elif [ -e /etc/gentoo-release ]; then
## Gentoo
set -e
set -o pipefail
emerge_output="$(emerge -puDv @world 2>&1)"
exit_code="$?"
echo "$emerge_output" | grep -qF -- '[ebuild' && echo "false" || echo "true"
else else
echo "Check not implemented for this distribution" >&2 echo "Check not implemented for this distribution" >&2
exit 1 exit 1