mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-08 03:33:10 +00:00
* Adjust version checking regex to account fo no comma in IOS-XE * Adjusted regex to include last character of version number
This commit is contained in:
committed by
Toshio Kuratomi
parent
f0aa31b49e
commit
e5d247fdc0
@@ -184,7 +184,7 @@ class Default(FactsBase):
|
||||
self.facts['hostname'] = self.parse_hostname(data)
|
||||
|
||||
def parse_version(self, data):
|
||||
match = re.search(r'Version (\S+),', data)
|
||||
match = re.search(r'Version (\S+?)(?:,\s|\s)', data)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user