mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #10652 from vodik/nspawn
Support querying systemd container information
This commit is contained in:
commit
527ae360b0
1 changed files with 6 additions and 0 deletions
|
@ -2516,6 +2516,12 @@ class LinuxVirtual(Virtual):
|
|||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
|
||||
systemd_container = get_file_content('/run/systemd/container')
|
||||
if systemd_container:
|
||||
self.facts['virtualization_type'] = systemd_container
|
||||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
|
||||
if os.path.exists('/proc/1/cgroup'):
|
||||
for line in get_file_lines('/proc/1/cgroup'):
|
||||
if re.search(r'/docker(/|-[0-9a-f]+\.scope)', line):
|
||||
|
|
Loading…
Reference in a new issue