Merge pull request #1255 from noelmcloughlin/suse15fix

fix for opensuse15 if no lsb_release pkg
This commit is contained in:
Nicole Thomas 2018-07-11 10:00:54 -04:00 committed by GitHub
commit d9a2725316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1088,10 +1088,14 @@ __gather_linux_system_info() {
n="Debian"
v=$(__derive_debian_numeric_version "$v")
;;
sles|opensuse )
sles )
n="SUSE"
v="${rv}"
;;
opensuse-leap )
n="opensuse"
v="${rv}"
;;
* )
n=${nn}
;;