commit 7230bd452431c743d2dbfa530dc2bbdbb0a73a52 Author: Ondrej Lichtner olichtne@redhat.com Date: Fri Oct 10 09:30:32 2014 +0200
UnusedInterface: add forgotten method overide
The cleanup method wasn't overridden and the controller would try to unmap unused interfaces.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com Signed-off-by: Jiri Pirko jiri@resnulli.us
lnst/Controller/Machine.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) --- diff --git a/lnst/Controller/Machine.py b/lnst/Controller/Machine.py index cfc4d77..26e475a 100644 --- a/lnst/Controller/Machine.py +++ b/lnst/Controller/Machine.py @@ -928,3 +928,6 @@ class UnusedInterface(Interface):
def down(self): pass + + def cleanup(self): + pass
lnst-developers@lists.fedorahosted.org