Merge pull request #11761 from amenonsen/9843-rebase

Add pciid to LinuxNetwork interface fact
pull/11764/head
Brian Coca 9 years ago
commit 80ecab5317

@ -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…
Cancel
Save