1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Made re.search string shorter

This commit is contained in:
Maciej Delmanowski 2013-09-23 12:27:14 +02:00
parent 40b0471e95
commit 551b93c547

View file

@ -1901,7 +1901,7 @@ class LinuxVirtual(Virtual):
if os.path.exists('/proc/1/cgroup'):
for line in open('/proc/1/cgroup').readlines():
if re.search('/lxc/.*$', line):
if re.search('/lxc/', line):
self.facts['virtualization_type'] = 'lxc'
self.facts['virtualization_role'] = 'guest'
return