mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix invalid string escape sequences.
This commit is contained in:
@@ -144,9 +144,9 @@ class LinuxVirtual(Virtual):
|
||||
|
||||
if os.path.exists('/proc/self/status'):
|
||||
for line in get_file_lines('/proc/self/status'):
|
||||
if re.match('^VxID: \d+', line):
|
||||
if re.match(r'^VxID: \d+', line):
|
||||
virtual_facts['virtualization_type'] = 'linux_vserver'
|
||||
if re.match('^VxID: 0', line):
|
||||
if re.match(r'^VxID: 0', line):
|
||||
virtual_facts['virtualization_role'] = 'host'
|
||||
else:
|
||||
virtual_facts['virtualization_role'] = 'guest'
|
||||
|
||||
Reference in New Issue
Block a user