Merge pull request #25 from hubertst/patch-1
[modules/nic] Add minimesos veth* interfaces to exclude list
This commit is contained in:
commit
c14189433d
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ def parameters():
|
||||||
class Module(bumblebee.module.Module):
|
class Module(bumblebee.module.Module):
|
||||||
def __init__(self, output, config, alias):
|
def __init__(self, output, config, alias):
|
||||||
super(Module, self).__init__(output, config, alias)
|
super(Module, self).__init__(output, config, alias)
|
||||||
self._exclude = ( "lo", "virbr", "docker", "vboxnet" )
|
self._exclude = ( "lo", "virbr", "docker", "vboxnet", "veth" )
|
||||||
self._state = "down"
|
self._state = "down"
|
||||||
self._typecache = {}
|
self._typecache = {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue