[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [raisin][PATCH 1/3] Handle unsupported distros with a prettier message



On Wed, 9 Sep 2015, Doug Goldstein wrote:
> Handle unknown distros by saying "unknown" instead of an empty string
> and for Gentoo users actually mention it.
> 
> Signed-off-by: Doug Goldstein <cardoe@xxxxxxxxxx>
> ---
>  lib/common-functions.sh | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/lib/common-functions.sh b/lib/common-functions.sh
> index c52174a..e96b105 100644
> --- a/lib/common-functions.sh
> +++ b/lib/common-functions.sh
> @@ -150,6 +150,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
> @@ -175,6 +178,7 @@ function get_distro() {
>              PKGTYPE="rpm"
>              ;;
>          *)
> +            [ -z $os_VENDOR ] && os_VENDOR="unknown"
>              DISTRO=$os_VENDOR
>              PKGTYPE="unknown"
>              ;;

Thanks again for the patch.
For consistency with the code style, could you please turn this into:

if [[ -z $os_VENDOR ]]
then
    os_VENDOR="unknown"
fi

You could also move it above the case.

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.