mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fix ansible_os_family fact on openSUSE Leap
ansible_os_family on openSUSE Leap has the wrong value: "ansible_os_family": "openSUSE Leap", It should be: "ansible_os_family": "Suse", This change fixes that by adding the relevant key and ensuring that dict lookups replace ' ' with '_' so the key does not contain a space.
This commit is contained in:
parent
517acb5773
commit
90fb809f62
1 changed files with 4 additions and 3 deletions
|
@ -274,7 +274,7 @@ class Facts(object):
|
|||
Archlinux = 'Archlinux', Manjaro = 'Archlinux', Mandriva = 'Mandrake', Mandrake = 'Mandrake', Altlinux = 'Altlinux',
|
||||
Solaris = 'Solaris', Nexenta = 'Solaris', OmniOS = 'Solaris', OpenIndiana = 'Solaris',
|
||||
SmartOS = 'Solaris', AIX = 'AIX', Alpine = 'Alpine', MacOSX = 'Darwin',
|
||||
FreeBSD = 'FreeBSD', HPUX = 'HP-UX'
|
||||
FreeBSD = 'FreeBSD', HPUX = 'HP-UX', openSUSE_Leap = 'Suse'
|
||||
)
|
||||
|
||||
# TODO: Rewrite this to use the function references in a dict pattern
|
||||
|
@ -511,8 +511,9 @@ class Facts(object):
|
|||
machine_id = machine_id.split('\n')[0]
|
||||
self.facts["machine_id"] = machine_id
|
||||
self.facts['os_family'] = self.facts['distribution']
|
||||
if self.facts['distribution'] in OS_FAMILY:
|
||||
self.facts['os_family'] = OS_FAMILY[self.facts['distribution']]
|
||||
distro = self.facts['distribution'].replace(' ', '_')
|
||||
if distro in OS_FAMILY:
|
||||
self.facts['os_family'] = OS_FAMILY[distro]
|
||||
|
||||
def get_cmdline(self):
|
||||
data = get_file_content('/proc/cmdline')
|
||||
|
|
Loading…
Reference in a new issue