Merge pull request #15086 from robinro/patch-2
remove double read of "path" (/etc/SuSE-release) in facts.py
This commit is contained in:
commit
b4b44b2708
1 changed files with 1 additions and 1 deletions
|
@ -466,7 +466,7 @@ class Facts(object):
|
||||||
elif path == '/etc/SuSE-release':
|
elif path == '/etc/SuSE-release':
|
||||||
if 'open' in data.lower():
|
if 'open' in data.lower():
|
||||||
data = data.splitlines()
|
data = data.splitlines()
|
||||||
distdata = get_file_content(path).split('\n')[0]
|
distdata = data[0]
|
||||||
self.facts['distribution'] = distdata.split()[0]
|
self.facts['distribution'] = distdata.split()[0]
|
||||||
for line in data:
|
for line in data:
|
||||||
release = re.search('CODENAME *= *([^\n]+)', line)
|
release = re.search('CODENAME *= *([^\n]+)', line)
|
||||||
|
|
Loading…
Reference in a new issue