Browse code

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

Vincent Untz authored on 2013/03/13 02:04:29
Showing 1 changed files
... ...
@@ -271,6 +271,8 @@ GetOSVersion() {
271 271
             if [[ $? -eq 0 ]]; then
272 272
                 os_VENDOR="openSUSE"
273 273
             fi
274
+        elif [[ $os_VENDOR == "openSUSE project" ]]; then
275
+            os_VENDOR="openSUSE"
274 276
         elif [[ $os_VENDOR =~ Red.*Hat ]]; then
275 277
             os_VENDOR="Red Hat"
276 278
         fi