mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #11761 from amenonsen/9843-rebase
Add pciid to LinuxNetwork interface fact
This commit is contained in:
commit
80ecab5317
1 changed files with 2 additions and 0 deletions
|
@ -1858,6 +1858,8 @@ class LinuxNetwork(Network):
|
|||
path = os.path.join(path, 'bonding', 'all_slaves_active')
|
||||
if os.path.exists(path):
|
||||
interfaces[device]['all_slaves_active'] = get_file_content(path) == '1'
|
||||
if os.path.exists(os.path.join(path,'device')):
|
||||
interfaces[device]['pciid'] = os.path.basename(os.readlink(os.path.join(path,'device')))
|
||||
|
||||
# Check whether an interface is in promiscuous mode
|
||||
if os.path.exists(os.path.join(path,'flags')):
|
||||
|
|
Loading…
Reference in a new issue