From: Doug Goldstein Date: Fri, 13 Nov 2015 04:08:03 +0000 (-0600) Subject: Handle unsupported distros with a prettier message X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=198500ae55598b8e86e48a6acf88fae654c8b841;p=raisin.git Handle unsupported distros with a prettier message Handle unknown distros by saying "unknown" instead of an empty string and for Gentoo users actually mention it. Signed-off-by: Doug Goldstein Acked-by: Stefano Stabellini --- diff --git a/lib/common-functions.sh b/lib/common-functions.sh index 27f6434..19434c2 100644 --- a/lib/common-functions.sh +++ b/lib/common-functions.sh @@ -98,6 +98,8 @@ function get_tests() { } function get_distro() { + os_VENDOR="unknown" + if [[ -x "`which lsb_release 2>/dev/null`" ]] then os_VENDOR=`lsb_release -i -s` @@ -150,6 +152,9 @@ function get_distro() { sed -r 's/\"|\(|\)//g' | awk '{print $2}'` os_RELEASE=`awk '/VERSION_ID=/' /etc/os-release | sed 's/VERSION_ID=//' \ | sed 's/\"//g'` + elif [[ -f /etc/gentoo-release ]] + then + os_VENDOR="Gentoo" fi # Simply distro version string