Adding support for clearlinux showing release nuber (#47101)
Signed-off-by: Josue David Hernandez <josue.d.hernandez.gutierrez@intel.com>
This commit is contained in:
parent
ad1180b22f
commit
8880c72682
1 changed files with 14 additions and 1 deletions
|
@ -83,7 +83,6 @@ class DistributionFiles:
|
|||
'OracleLinux': 'Oracle Linux',
|
||||
'RedHat': 'Red Hat',
|
||||
'Altlinux': 'ALT',
|
||||
'ClearLinux': 'Clear Linux',
|
||||
'SMGL': 'Source Mage GNU/Linux',
|
||||
}
|
||||
|
||||
|
@ -379,6 +378,20 @@ class DistributionFiles:
|
|||
|
||||
return True, coreos_facts
|
||||
|
||||
def parse_distribution_file_ClearLinux(self, name, data, path, collected_facts):
|
||||
clear_facts = {}
|
||||
if "clearlinux" not in name.lower():
|
||||
return False, clear_facts
|
||||
|
||||
version = re.search('VERSION_ID=(.*)', data)
|
||||
if version:
|
||||
clear_facts['distribution_major_version'] = version.groups()[0]
|
||||
clear_facts['distribution_version'] = version.groups()[0]
|
||||
release = re.search('ID=(.*)', data)
|
||||
if release:
|
||||
clear_facts['distribution_release'] = release.groups()[0]
|
||||
return True, clear_facts
|
||||
|
||||
|
||||
class Distribution(object):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue