Skip to content

Commit

Permalink
Merge branch 'b2.1' into journaled_data
Browse files Browse the repository at this point in the history
  • Loading branch information
cvaroqui committed Nov 25, 2020
2 parents e43ecfc + 75d862a commit a8344cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opensvc/drivers/check/eth/linux.py
Expand Up @@ -16,7 +16,8 @@ def get_intf(self):
intf += self.add_slaves(bond)
ifconfig = utilities.ifconfig.Ifconfig()
for i in ifconfig.intf:
if not i.name.startswith('eth'):
if not i.name.startswith("eth") and \
not i.name.startswith("en"):
continue
if len(i.ipaddr) == 0 and len(i.ip6addr) == 0:
continue
Expand Down
Empty file.

0 comments on commit a8344cf

Please sign in to comment.