mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Oops... fixed an error
This commit is contained in:
parent
13da2c3ac9
commit
83f35a63dd
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ class Facts(object):
|
|||
self.facts['distribution_release'] = ora_prefix + data
|
||||
elif name == 'SuSE':
|
||||
data = get_file_content(path).splitlines()
|
||||
self.facts['distribution_version'] = data.split[2].split('=')[1].strip()
|
||||
self.facts['distribution_version'] = data[2].split('=')[1].strip()
|
||||
else:
|
||||
self.facts['distribution'] = name
|
||||
|
||||
|
|
Loading…
Reference in a new issue