mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 02:00:22 +00:00
Merge pull request #1255 from noelmcloughlin/suse15fix
fix for opensuse15 if no lsb_release pkg
This commit is contained in:
commit
d9a2725316
1 changed files with 5 additions and 1 deletions
|
@ -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}
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue