From cd1fe9849431403893bdef50d5327b65ec273f77 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Tue, 12 Mar 2013 18:04:29 +0100 Subject: [PATCH] Handle LSB data for openSUSE 12.3 The LSB vendor changed to "openSUSE project" in openSUSE 12.3. Deal with it as if it were simply "openSUSE". Change-Id: Id20eac6abba4c07aed1cf4617e89357974f62ff8 --- functions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions b/functions index 8cb703c567..a53b363945 100644 --- a/functions +++ b/functions @@ -271,6 +271,8 @@ GetOSVersion() { if [[ $? -eq 0 ]]; then os_VENDOR="openSUSE" fi + elif [[ $os_VENDOR == "openSUSE project" ]]; then + os_VENDOR="openSUSE" elif [[ $os_VENDOR =~ Red.*Hat ]]; then os_VENDOR="Red Hat" fi