From b2bf538b8c355b1bf04657fafc717ad20779e4a4 Mon Sep 17 00:00:00 2001 From: Robert Schweikert Date: Thu, 6 Aug 2020 18:57:10 -0400 Subject: Handle additional identifier for SLES For HPC (#520) Add "sle_hpc" to list of values which are variant 'suse'. --- cloudinit/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cloudinit') diff --git a/cloudinit/util.py b/cloudinit/util.py index b6f1117f..3c087176 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -551,7 +551,8 @@ def system_info(): elif linux_dist == 'redhat': var = 'rhel' elif linux_dist in ( - 'opensuse', 'opensuse-tumbleweed', 'opensuse-leap', 'sles'): + 'opensuse', 'opensuse-tumbleweed', 'opensuse-leap', + 'sles', 'sle_hpc'): var = 'suse' else: var = 'linux' -- cgit v1.2.3